C# 方法冒号this的用法
public Class1(string host, int port, string password = null):this() { this.Host=host; this.Port=port; this.Password=password; }
this的这种用法,是构造函数的复用。
网络:C#中this的用法集锦
public Class1(string host, int port, string password = null):this() { this.Host=host; this.Port=port; this.Password=password; }
this的这种用法,是构造函数的复用。
网络:C#中this的用法集锦