コメントありがとうございます。 サービス終了した今なら、安く中古が手に入りそ…
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");
検索
コメントを残す