C#遍历一个dictionary

KeyValuePair<T,V>
如果使用的是C#3.0可以直接使用var进行遍历。
 Dictionary<string, object> ds = new Dictionary<string, object>();
foreach (KeyValuePair<string ,object> item in ds)
{
......
}
posted @ 2011-05-05 13:21  Byrd  阅读(439)  评论(0编辑  收藏  举报