コード例 #1
0
ファイル: ConsoleCommands.cs プロジェクト: dasvex/engpopup
 private string DisableWord(string p)
 {
     foreach(var item in dictions.GetUsingdictions()) {
         Record row = new Record(item.ToString());
         row.word = p;
         row.DisableWord();
     }
     return p + "#word now is not avalible";
 }