当前位置: 代码迷 >> C# >> 请教C#里有没有跟VB里的Property Let/Set/Get类似的方法
  详细解决方案

请教C#里有没有跟VB里的Property Let/Set/Get类似的方法

热度:7273   发布时间:2013-02-25 00:00:00.0
请问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+
}
  相关解决方案