/* github */
  2018年4月15日
摘要: //File类的常用操作方法 //File类的常用操作方法 //File.Exists //检测是否存在该文件 Exists //File.Create //创建一个文件 Create //File.Delete //删除指定的文件 //File.Move //剪切指定的文 File.Create( 阅读全文
posted @ 2018-04-15 22:19 王精灵 阅读(2201) 评论(0) 推荐(0) 编辑
摘要: Dictionary<int, string> d = new Dictionary<int, string>(); d.Add(1, "wjl"); d.Add(2, "zhangsan"); d.Add(3, "hyf"); //Dictionary里面可以添加不同键相同值 d.Add(4, " 阅读全文
posted @ 2018-04-15 20:34 王精灵 阅读(1517) 评论(0) 推荐(0) 编辑