0
Encapsulated
Is private string location {get;set;} the same as Private string location; public string Location { get { return location; } set { location = value; } } When it comes to encapsulated properties
1 Answer
0
Yes it is
Is private string location {get;set;} the same as Private string location; public string Location { get { return location; } set { location = value; } } When it comes to encapsulated properties