public Class_PersonInfo(string employeeID) : this()
{
this.getPerson(employeeID);
}
//默认构造函数
public MyClass()
{
}
//带参数构造函数
public MyClass(Iint x, int y)
{
this.x=x;
this.y=y;
}
//公共实例方法
public void showFields()
{
}
时间: 2024-10-13 12:57:53