中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

如何在C#中初始化Map集合

c#
小樊
94
2024-09-04 15:46:27
欄目: 編程語言

在C#中,您可以使用Dictionary<TKey, TValue>來表示Map集合

方法1:使用Collection Initializer語法(需要C# 3.0及更高版本)

using System;
using System.Collections.Generic;

class Program
{
    static void Main()
    {
        var map = new Dictionary<string, int>
        {
            {"one", 1},
            {"two", 2},
            {"three", 3}
        };

        foreach (var item in map)
        {
            Console.WriteLine($"Key: {item.Key}, Value: {item.Value}");
        }
    }
}

方法2:使用Add()方法逐個添加元素

using System;
using System.Collections.Generic;

class Program
{
    static void Main()
    {
        var map = new Dictionary<string, int>();
        map.Add("one", 1);
        map.Add("two", 2);
        map.Add("three", 3);

        foreach (var item in map)
        {
            Console.WriteLine($"Key: {item.Key}, Value: {item.Value}");
        }
    }
}

這兩種方法都會創建一個包含三個鍵值對的Dictionary<string, int>實例。請根據您的需求選擇合適的方法。

0
耒阳市| 古交市| 桐乡市| 玉山县| 苍溪县| 临海市| 仁怀市| 英吉沙县| 四川省| 深水埗区| 海兴县| 色达县| 朝阳县| 军事| 六盘水市| 云龙县| 庄河市| 屯门区| 彭泽县| 西盟| 将乐县| 神木县| 嘉兴市| 宜州市| 阳高县| 饶河县| 万安县| 长丰县| 武平县| 龙岩市| 江西省| 巴彦县| 邯郸市| 乌拉特后旗| 安徽省| 吴桥县| 广河县| 平南县| 永城市| 三都| 江油市|