public string ID {get; private set;}
上面的属性对实例公开get方法,而在类里面可以使用set方法。
相应的internal, protected, internal protected都可以用来修饰属性。注意public不可以,因为默认就是public。
public string ID {get; private set;}
上面的属性对实例公开get方法,而在类里面可以使用set方法。
相应的internal, protected, internal protected都可以用来修饰属性。注意public不可以,因为默认就是public。