在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);
這些方法都可以用來初始化并賦值一個字典,根據實際場景和個人偏好選擇合適的方法。