「C#」ValuesプロパティでDictionaryの値の集合を取得する
書式
foreach (var 変数名 in Dictionaryのインスタンス名.Values)
使用例
using System; using System.Collections.Generic; class Arkgame { public static void Main() { //Dictionaryクラスをインスタンス var citys = new Dictionary<int, string>(); citys.Add(101, "東京"); citys.Add(202, "大阪"); citys.Add(303, "福岡"); //Valuesプロパティで値の集合を取得 foreach (var cc in citys.Values ) { Console.WriteLine("値: " + cc); } Console.ReadKey(); } }
実行結果
値: 東京
値: 大阪
値: 福岡