get / set

时间:2018-02-18 15:54:34

标签: c# variable-declaration

为什么人们这样做

int myInt { get; set; }

而不仅仅是这个?

int myInt;

1 个答案:

答案 0 :(得分:0)

有些代码可以让您轻松入门 你喜欢哪个?
这样:

private int _myInt;
public int GetMyInt()
{
    return _myInt;
}
public void SetMyInt(int value)
{
    _myInt = value;
}

或者这个?:

int myInt { get; set;}

属性使其变得简单。您可以阅读更多信息here