Console.WriteLine("Hello World");
Nested1 testCase = new Nested1();
if(testCase?.nestedtwo?.nestedthree?.GetString() != null)
Console.WriteLine("Not Null");
Console.WriteLine("Null");
Console.WriteLine("Exception");
public string foobar = "Bleh";
public string GetString()
Console.WriteLine("We're in GetString");
public Nested3 nestedthree = null;
public Nested2 nestedtwo = null;