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

溫馨提示×

如何在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
上思县| 红河县| 丽水市| 上饶市| 高雄市| 长治县| 郧西县| 扶绥县| 衡阳县| 汤原县| 辛集市| 安国市| 彭阳县| 陇川县| 高阳县| 额尔古纳市| 康保县| 抚远县| 东阿县| 浙江省| 淮南市| 双鸭山市| 筠连县| 武清区| 拉萨市| 杂多县| 巴中市| 二手房| 普宁市| 孟津县| 宁都县| 江华| 阿拉善左旗| 恭城| 土默特右旗| 巴林左旗| 庆城县| 晴隆县| 临洮县| 永定县| 汉寿县|