0

std::map<string,bool>在 asp.net中最接近的东西是什么?

4

3 回答 3

4

字典

Dictionary<string, bool> 
于 2013-02-07T19:49:56.010 回答
2

我想你可能会使用:

System.Collections.Generic.Dictionary<string,bool>
于 2013-02-07T19:50:02.513 回答
0

Dictionary集合是一个哈希表。System.Collections.Generic.Dictionary<string,bool>是最相似的数据结构std::map<string,bool>

于 2013-02-07T20:00:03.870 回答