var location = default(string);
if (vendor != null)
{
if (vendor.ContactPerson != null)
{
if (vendor.ContactPerson.HomeAddress != null)
{
location = vendor.ContactPerson.HomeAddress.LineOne;
}
}
}
Now, using C#
6, this same idiom becomes much more readable:
var location =
vendor?.ContactPerson?.HomeAddress?.LineOne;
No comments :
Post a Comment