码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2015-12-03 20:56:13      阅读:155      评论:0      收藏:0      [点我收藏+]

标签:

 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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!