Skip to content

Instantly share code, notes, and snippets.

@cartermp
Last active July 12, 2016 16:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cartermp/b4920d5cb74e5d3e62d602c9570e264d to your computer and use it in GitHub Desktop.
Save cartermp/b4920d5cb74e5d3e62d602c9570e264d to your computer and use it in GitHub Desktop.
using System;
namespace Fuckaroo
{
class Program
{
void Test()
{
if (this == null)
Console.WriteLine("this is null");
}
static void Main(string[] args)
{
Program p = null;
p.Test();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment