0
我想使對象的第一個元素爲string
,第二個元素爲list
。列表對象可以是int
/string
。我不知道如何實現這個功能。請幫助。以下類型的數據,我需要:c中的多維集合#
Key Value
mon_number {1,4,5}
mon_name {jan,apr,may}
quater_number {1,2}
我想使對象的第一個元素爲string
,第二個元素爲list
。列表對象可以是int
/string
。我不知道如何實現這個功能。請幫助。以下類型的數據,我需要:c中的多維集合#
Key Value
mon_number {1,4,5}
mon_name {jan,apr,may}
quater_number {1,2}
如果Key
是獨一無二的,你可以使用Dictionary<string, List<object>>
:
Dictionary<string, List<object>> dict = new ...;
dict["mon_number"] = new List<object>();
dict["mon_number"].Add(1);
dict["mon_number"].Add(2);
dict["mon_number"].Add(5);
dict["mon_name"] = new List<object>();
dict["mon_name"].Add("jan");
dict["mon_name"].Add("apr");
dict["mon_name"].Add("may");
...
你也可以使用數組(如果該元素在列表中的類型是等於所有條目):
Dictionary<string, object[]> dict = new ...;
dict["mon_number"] = new [] {1, 2, 5 };
dict["mon_name"] = new[] { "jan", "apr", "may" }
我可以直接添加列表:dict [「mon_number」] .add(xyzList); – Dhwani
你的意思是'AddRange'? –
嗯..意思,如果我列出mon_number像列表 mon_numberList =新列表(); mon_numberList.Add(1); mon_numberList.Add(4); mon_numberList.Add(5);並將其添加到字典中,如:dict [「mon_number」] .add(mon_numberList); –
Dhwani