Skip to content

Instantly share code, notes, and snippets.

// Assign "Hello World" to a variable message
String Message = "Hello, my friends";
Console.WriteLine(Message);
Console.Read();
// Assign a different string to a different variable
String Variable = "this is the first version";
Console.WriteLine(Variable);
Variable = "this is the second version";
Console.WriteLine(Variable);
Console.Read();
@michaelnull
michaelnull / tic tac toe day 2
Created July 1, 2015 01:39
Tic Tac Toe, day 2
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace day_2_tictactoe_take_2
{
class Program
{
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace day_2_tictactoe_take_2
{
class Program
{
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace day_2_tictactoe_take_2
{
class Program
{
@michaelnull
michaelnull / Day 3.cs
Created July 2, 2015 02:15
Michael Null's Pig Dice game
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApplication3
{
class Program
@michaelnull
michaelnull / day 4 gist
Last active August 29, 2015 14:24
parser for planet express
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApplication15
{
class Program
{
@michaelnull
michaelnull / w2 day 1 homework
Created July 7, 2015 21:07
Robot, panda and human
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApplication20
{
class Program
{
@michaelnull
michaelnull / secretsanta
Last active August 29, 2015 14:24
Secret santa list
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
namespace ConsoleApplication26
{
class Program
@michaelnull
michaelnull / shop
Last active August 29, 2015 14:24
automotive shop
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
namespace ConsoleApplication21
{
class Program
@michaelnull
michaelnull / gist:7795c5805ad78d1af80c
Last active January 18, 2017 15:40
blackjack game
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
namespace Blackjack
{