C#での辞書の初期化および値の設定方法は何ですか?

C#で辞書を初期化して値を割り当てる方法は次の通りです。

// 方法1:使用字典初始化器
Dictionary<string, int> dict1 = new Dictionary<string, int>
{
    { "key1", 1 },
    { "key2", 2 },
    { "key3", 3 }
};

// 方法2:使用Add方法逐个添加键值对
Dictionary<string, int> dict2 = new Dictionary<string, int>();
dict2.Add("key1", 1);
dict2.Add("key2", 2);
dict2.Add("key3", 3);

// 方法3:使用键值对数组初始化字典
var keyValuePairs = new[]
{
    new KeyValuePair<string, int>("key1", 1),
    new KeyValuePair<string, int>("key2", 2),
    new KeyValuePair<string, int>("key3", 3)
};
Dictionary<string, int> dict3 = new Dictionary<string, int>(keyValuePairs);

これらの方法は、辞書を初期化および値を割り当てるために使用できますので、実際の状況や個人の好みに応じて適切な方法を選択してください。

コメントを残す 0

Your email address will not be published. Required fields are marked *