Can you spot the problem?

Posted by Miha Markič on June 28, 2007 · 1 min read

Check out this code:

static void Main(string[] args) { string test = null; Console.WriteLine("Is test null: " + test == null); Console.ReadLine(); }

And guess the output without running the code.