using System;
public class Program
{
public static void Main()
Console.WriteLine(DateTime.Now);
int a = 0;
Console.WriteLine(a == null); //see the compiler warning here, this always returns false
}