为什么人们这样做
int myInt { get; set; }
而不仅仅是这个?
int myInt;
答案 0 :(得分:0)
有些代码可以让您轻松入门
你喜欢哪个?
这样:
private int _myInt;
public int GetMyInt()
{
return _myInt;
}
public void SetMyInt(int value)
{
_myInt = value;
}
或者这个?:
int myInt { get; set;}
属性使其变得简单。您可以阅读更多信息here。