public class Persion
{
字段;
属性;
方法;
}
eg:
public class Persion
{
string _name;
public string Name
{
get {return _name}
set {_name = value}
}
方法;
}
字段快速生成属性方法 Ctrl+ R + E
public class Persion
{
字段;
属性;
方法;
}
eg:
public class Persion
{
string _name;
public string Name
{
get {return _name}
set {_name = value}
}
方法;
}
字段快速生成属性方法 Ctrl+ R + E