91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

c#中dictionary怎么改成list

c#
小億
317
2024-02-05 10:40:36
欄目: 編程語言

要將C#中的Dictionary改成List,可以使用Dictionary的Keys和Values屬性。可以使用Keys屬性獲得Dictionary中的所有鍵,并使用Values屬性獲得所有的值。然后使用List的構造函數將鍵和值轉換為List。以下是一個示例:

Dictionary<string, int> myDictionary = new Dictionary<string, int>();
myDictionary.Add("Apple", 1);
myDictionary.Add("Banana", 2);
myDictionary.Add("Orange", 3);

List<string> keys = new List<string>(myDictionary.Keys);
List<int> values = new List<int>(myDictionary.Values);

Console.WriteLine("Keys:");
foreach (string key in keys)
{
    Console.WriteLine(key);
}

Console.WriteLine("Values:");
foreach (int value in values)
{
    Console.WriteLine(value);
}

輸出:

Keys:
Apple
Banana
Orange
Values:
1
2
3

在上面的示例中,我們首先定義了一個Dictionary對象,并向其添加了一些鍵值對。然后使用Keys屬性將鍵轉換為List,并使用Values屬性將值轉換為List。最后使用foreach循環打印出List中的元素。

0
天峨县| 辽宁省| 尉氏县| 株洲市| 汪清县| 雅安市| 澄城县| 武宁县| 罗田县| 洛浦县| 孝义市| 修武县| 西昌市| 九寨沟县| 靖江市| 屏山县| 云南省| 毕节市| 凤凰县| 衡东县| 临颍县| 卓资县| 运城市| 万山特区| 那曲县| 崇阳县| 淮南市| 安泽县| 陇川县| 灌南县| 华坪县| 南阳市| 江达县| 富裕县| 十堰市| 汉中市| 黎城县| 怀化市| 云阳县| 丁青县| 米泉市|