コメントありがとうございます。 右クリックで開かれる方にとっては不便ですね。 幸…
C#のHashTableでキーの存在をチェックする
System.Collections.Hashtable ht = new System.Collections.hashtabne();
ht.add("foo","bar");
if(ht.ContainsKey("foo")) Console.WriteLine("foo is true");
if(!ht.ContainsKey("hoge")) Console.WriteLine("hoge is false");
検索

コメントを残す