コード例 #1
0
 public bool Add(clsClient client)
 {
     if (Exist(client.MyClient.Id) == false)
     {
         myClientList.Add(client.MyClient.Id, client);
         return(true);
     }
     else
     {
         return(false);
     }
 }
コード例 #2
0
 public clsClient Update(string stringId, clsClient client)
 {
     return(myClientList[stringId] = client);
 }