I have a property like this:
public Tuple[] Breadcrumbs { get; set; }
and I have a test in one of my methods like thi
Auto-properties use backing fields and are compiled to regular properties.
If the Property-Type is a reference type the value would be null, if not the value would be the default value.