Not really a question just wanting to see how others feel about the new property declaration
as opposed toCode:public string Name { get; set; }
I personally prefer the older syntax as within a class the idea of calling the property never seems right to me I always call the private field just wanting to hear other coders opinionsCode:private string name; public string Name { get { return name; } set { name=value; } }![]()




Reply With Quote