, :
public class Person {
public Cat Cat { get; set; }
}
public class Cat {
public string Name { get; set; }
}
myPerson.Cat . , , , Cat, , .
, myPerson.Cat null. Cat, null. - null myPerson.Cat.Name, NullReferenceException.
, , null if (myPerson.Cat != null) { ... } . , , null, . , , , .