「C#」ValuesプロパティでDictionaryの値の集合を取得する

2021年10月8日

書式
foreach (var 変数名 in Dictionaryのインスタンス名.Values)

使用例

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
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();
}
}
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(); } }
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();
    }
}

実行結果
値: 東京
値: 大阪
値: 福岡

C#

Posted by arkgame