【发布时间】:2011-09-26 10:27:06
【问题描述】:
可能的重复:
What is the difference between a field and a property in C#
Should I use public properties and private fields or public fields for data?
有什么区别:
public string varA;
和
public string varA { get; set; }
【问题讨论】:
-
这里已经回答过:Why Properties Matter
标签: c# properties field