public static void Main()
object o2 = new object();
Console.WriteLine(nameof(o1) + " is object type and is not null");
Console.WriteLine(nameof(o1) + " is not object type or is null");
Console.WriteLine(nameof(o2) + " is object type and is not null");
Console.WriteLine(nameof(o2) + " is not object type or is null");