1

如果您可以在列表中执行此操作

List<int> a = new List<int>() {
   2, 4, 6, 8, 10
};

你怎么能在字典中做同样的事情?

Dictionary<int, bool> b = new Dictionary<int, bool>() {
   ?, ?, ?
};
4

2 回答 2

8
Dictionary<int, bool> b = new Dictionary<int, bool>() {
   {1, true},{2, false},{3, true}
};
于 2012-06-06T02:40:18.643 回答
4

MSDN 对此有一篇文章:http: //msdn.microsoft.com/en-us/library/bb531208.aspx

您只需将每个键值对包装在大括号中。

于 2012-06-06T02:40:51.597 回答