Skip to content

Instantly share code, notes, and snippets.

@arialdomartini
Created October 22, 2014 10:30
Show Gist options
  • Save arialdomartini/b9206bda3c92ed2f8568 to your computer and use it in GitHub Desktop.
Save arialdomartini/b9206bda3c92ed2f8568 to your computer and use it in GitHub Desktop.
Nullity
namespace Nullity
{
class Program
{
static void Main(string[] args)
{
String nullity = null;
if (nullity == null)
{
Console.WriteLine("Yeeeeeee");
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment