using System; public class Test { public static void Main() { if (42 == null) Console.WriteLine("something is wrong in this universe ;-)"); else Console.WriteLine("ok: 42 and null are different."); } }