public class MyClass { private int myInt; //字段 public MyClass() //构造函数 { myInt = 99; } public int MyInt //属性 { get { return myInt; } set { myInt = value; } } public void DoSomething() //方法 { //............. }
时间: 2024-11-10 06:22:03
public class MyClass { private int myInt; //字段 public MyClass() //构造函数 { myInt = 99; } public int MyInt //属性 { get { return myInt; } set { myInt = value; } } public void DoSomething() //方法 { //............. }