[C#]Dictionaryの要素に初期値をセットするサンプル
書式
var 変数名 = new Dictionary<TKey,TValue>();
キーと値のコレクションを表します。
TKey
ディクショナリ内のキーの型。
TValue
ディクショナリ内の値の型。
使用例
using System; using System.Collections.Generic; class Arkgame { public static void Main() { //Dictionaryクラスの初期値をセット var citys = new Dictionary<int, string>() { {101,"東京"}, {202,"大阪"}, {303,"福岡"}, {404,"横浜"} }; //foreach文でDictionaryの値を取得 foreach (var cc in citys) { Console.WriteLine("キー: "+cc.Key + " 値: "+cc.Value); } Console.ReadKey(); } }
実行結果
キー: 101 値: 東京
キー: 202 値: 大阪
キー: 303 値: 福岡
キー: 404 値: 横浜