C#プチリファレンス

C# KeyValuePair型(System.Collections.Generic.KeyValuePair)

KeyValuePair型は1つのKeyとValueのみのシンプルなクラスです。

KeyValuePairを作成する

例)Key="01"、Value="北海道"のクラスを生成
using System.Collections.Generic;

// KeyValuePairの生成
KeyValuePair<string, string> kvp = new KeyValuePair<string, string>("01", "北海道");

キー、値を取得する

KeyValuePairのキー、値を取得するサンプルです。

例)
// キーを取得する
string k = kvp.Key;

// 値を取得する
string v = kvp.Value;
ToTop