我确信我的哈希表中没有重复的值和键。这是我的代码:
private void checkclientleave(string content)
{
if (content == "I am leaving the room")
{
foreach (DictionaryEntry dict in clientsInroom)
{
if (dict.Value == clientSocket)
clientsList.Remove(dict.Key);
}
}
}
我的哈希表的值是每个客户端的套接字。我的哈希表的键是每个客户端的名称。我收到一些未知错误:集合已修改枚举操作可能无法执行任何人有任何想法?