在C#中,可以通过以下几种方式将字典值添加到集合中:
Values
属性获取所有的字典值,并通过Add
方法将其逐个添加到集合中。Dictionary<string, int> dictionary = new Dictionary<string, int>();
// 假设字典已经包含了一些键值对
List<int> collection = new List<int>();
foreach (int value in dictionary.Values)
{
collection.Add(value);
}
ToList
方法:使用LINQ查询语法将字典值转换为列表,并直接赋值给集合变量。Dictionary<string, int> dictionary = new Dictionary<string, int>();
// 假设字典已经包含了一些键值对
List<int> collection = dictionary.Values.ToList();
无论采用哪种方式,添加字典值到集合中都不会保留键的关联信息,只会将字典中的值提取出来添加到集合中。如果需要同时保留键和值的关联信息,可以考虑使用KeyValuePair<TKey, TValue>
结构体创建一个新的集合。
Dictionary<string, int> dictionary = new Dictionary<string, int>();
// 假设字典已经包含了一些键值对
List<KeyValuePair<string, int>> collection = new List<KeyValuePair<string, int>>();
foreach (KeyValuePair<string, int> pair in dictionary)
{
collection.Add(pair);
}
这样,集合中的每个元素都包含了键和值的关联信息。
领取专属 10元无门槛券
手把手带您无忧上云