Dictionary<string, string> dic = new Dictionary<string, string>(); dic.Add("1", "1"); for (int index = 0; index < dic.Count; index++) { var item = dic.ElementAt(index); var itemKey = item.Key; var itemValue = item.Value; }
标签:sharp count pos nta cti element har int for
Dictionary<string, string> dic = new Dictionary<string, string>(); dic.Add("1", "1"); for (int index = 0; index < dic.Count; index++) { var item = dic.ElementAt(index); var itemKey = item.Key; var itemValue = item.Value; }
标签:sharp count pos nta cti element har int for
原文地址:https://www.cnblogs.com/XuPengLB/p/8257724.html