If you a have Person Property on Address defined like
public class Address
{
public int AdressId {get; set;}
public Person AddressesPerson {get;set;}
public string FullAddress {get; set;}
}
What is the proper conventions, if any, for naming a property of another type?
I don’t think there’s a hard and fast rule, but generally I like to stick to the following guidelines as much as possible:
Ownermight be an appropriate property name, since aPersonowns a particularAddress.