C# 中的多维关联数组

本文关键字:关联 数组 | 更新日期: 2023-09-27 18:31:43

我正在尝试找到一些东西,在那里我可以拥有一个包含键/值列表的键/值列表,所以它看起来像这样:

String Item 1
    +- key1 -> Object
    +- key2 -> Object
String Item 2
    +- key1 -> Object
    +- key2 -> Object
    +- key3 -> Object
    +- key4 -> Object
String Item 3
    +- key1 -> Object

在 php 中,它看起来像这样:

array(
    "String Item 1" => array(
        "key1" => Object,
        "key2" => Object
    ),
    "String Item 2" => array(
        "key1" => Object,
        "key2" => Object,
        "key3" => Object,
        "key4" => Object
    ),
    "String Item 3" => array(
        "key1" => Object
    )
);

在 C# 中有什么可以做到这一点的吗?

C# 中的多维关联数组

您可以使用使用泛型词典作为值的泛型词典:

var dict = new Dictionary<string, Dictionary<string, object>>();
// Adding a value
dict.Add("key", new Dictionary<string, object>()
{
    { "key1", "value1" },
    { "key2", "value2" }
});
// Retrieving value1
var result = dict["key"]["key1"];