Exemplo n.º 1
0
 public static bool CheckWord(string word, string groupsId)
 {
     if (!GroupAndWord.ContainsKey(groupsId))
     {
         return(false);
     }
     return(GroupAndWord[groupsId] == word);
 }
Exemplo n.º 2
0
 public void ApplyWord(string groupId, string word)
 {
     GroupAndWord.Add(groupId, word);
 }