请问C#里有没有跟VB里的Property Let/Set/Get类似的方法?
如题,老衲菜鸟一枚,求解:
C#里有没有跟VB里的Property Let/Set/Get类似的方法?
c#
vb
------解决方案--------------------public class Foo
{
private int _id;
public int ID { get { return _id; } set { _id = value; } }
public string Name { get; set; } // this line requires C# 2008+
}