Last active
July 12, 2016 16:40
-
-
Save cartermp/b4920d5cb74e5d3e62d602c9570e264d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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