实例构造函数public Class_PersonInfo(string employeeID) : this()

 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()
{
 
}
原文地址:https://www.cnblogs.com/ydfq-home/p/5017375.html