连接c#中列表的元素
本文关键字:元素 列表 连接 | 更新日期: 2023-09-27 18:21:45
我想在C#中尝试一些使用集合和泛型的例子,但我被这个例子卡住了。
这是我在c#中的代码,
public List<string> CurrentCount(int week, int year)
{
List<string> lst = new List<string>();
lst.Add("current:");
lst.Add("10");
lst.Add("target:");
lst.Add("15");
return lst;
}
It gives me result like this :
["current:","10","target:","15"]
But I want it like this :
["current": 10,"target": 15] or
["current": "10","target": "15"]
任何想法都会有所帮助。
谢谢。
您想要的是Dictionary
,而不是List
。
var dict = new Dictionary<string, int>();
dict.Add("current", 10);
dict.Add("target", 15);