赞
踩
- public void TraverseDic(Dictionary dic)
- {
- for (int i = 0; i < dic.Count; i++)
- {
- KeyValuePair<int, int> kv = dic.ElementAt(i);
- int key = kv.Key;
- int value = kv.Value;
- }
- }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。