02 2017 档案
Linq的优点以及注意事项
摘要: 阅读全文
posted @ 2017-02-22 17:18 HubbertHu 阅读(249) 评论(0) 推荐(0)
C#文件写入操作
摘要:private const string File_Name = @"C:\log.txt"; //const表示不能更改的变量,也可以当作常量 static void Main(string[] args) { if(File.Exists(File_Name)){ //向现有的文件中追加文... 阅读全文
posted @ 2017-02-22 17:13 HubbertHu 阅读(714) 评论(0) 推荐(0)