示例#1
0
 public void CopyTo(ClientInformationList list)
 {
     list.ClientDictionary = new Dictionary <string, ClientInformation>(this.ClientDictionary, StringComparer.CurrentCultureIgnoreCase);
 }
示例#2
0
 public ClientInformationList(ClientInformationList list)
 {
     this._clientDictionary = new Dictionary <string, ClientInformation>(list._clientDictionary, StringComparer.CurrentCultureIgnoreCase);
 }