2018年4月13日
摘要: using System;using System.Collections.Generic;using System.Data;using System.Linq;using System.Reflection;using System.Text;using System.Threading.Tas 阅读全文
posted @ 2018-04-13 17:50 水维度_国果 阅读(143) 评论(0) 推荐(0)
摘要: //定义字典 Dictionary<string, string> d = new Dictionary<string, string>(); //添加字典的元素 for (int i = 0; i < 5; i++) { d.Add("key" + i, "value" + i); } //取值/ 阅读全文
posted @ 2018-04-13 16:03 水维度_国果 阅读(193) 评论(0) 推荐(0)