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