Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私は次の結果セットを持っています:
名前 オカレンス ジャック 2 ジル 1 トム 3
これをHashMapに入れたいですか?1 つのエントリしか表示できませんでした。それとも ArrayList を使用するのが最適ですか?
Dictionary<string, int> dictionary = new Dictionary<string, int>(); dictionary.Add("Jack ", 2); dictionary.Add("Jill ", 1); dictionary.Add("Tom ", 3);