C# 方法冒号this的用法

public Class1(string host, int port, string password = null):this()
{
     this.Host=host;
     this.Port=port;
     this.Password=password;
}

 

this的这种用法,是构造函数的复用。

 

参考文章:.NET/C# 类构造函数中this的用法

网络:C#中this的用法集锦

posted on 2017-11-21 18:34  荆棘人  阅读(1618)  评论(0编辑  收藏  举报

导航