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()
{
}
实例构造函数public Class_PersonInfo(string employeeID) : this()
原文:http://www.cnblogs.com/ydfq-home/p/5017375.html