实例构造函数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()
{
 
}
posted @ 2015-12-03 19:38  印象钟情  阅读(246)  评论(0编辑  收藏  举报