可能重複:
Differences between Private Fields and Private Properties初始化對象的私有財產
比方說,我有一個擁有私人財產MyProp一個MyClass類。 有什麼
public class MyClass
{
private int MyProp { get; set; }
}
和
public class MyClass
{
private int MyProp = 0;
}
更棒的使用之間的區別? 謝謝。
第一個是一個屬性。第二個是一個領域。 – DOK 2012-01-10 21:12:07
重複相同類型的問題... http://stackoverflow.com/questions/1568091/why-use-getters-and-setters – Lloyd 2012-01-10 21:12:18
http://stackoverflow.com/questions/653536/difference-between-財產和場中的c - 銳利 http://csharpindepth.com/articles/chapter8/propertiesmatter.aspx – 2012-01-10 21:14:04