亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

如何在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
牡丹江市| 保亭| 无极县| 本溪| 留坝县| 衡水市| 青阳县| 遵化市| 卢氏县| 西畴县| 西和县| 商河县| 化隆| 泾阳县| 云和县| 定日县| 旬阳县| 河津市| 莱州市| 绿春县| 共和县| 白河县| 会宁县| 满洲里市| 鹿泉市| 历史| 措美县| 巧家县| 夏邑县| 北安市| 隆子县| 尉氏县| 石景山区| 昭苏县| 卢氏县| 新河县| 德钦县| 新野县| 武鸣县| 延庆县| 安图县|