摘要:
表名:table1,用户名:abc,密码:123 阅读全文
摘要:
方式一: (while ((line = sr.ReadLine()) != null) { strData +=(line+"\r\n"); } 方式二: while ((line = sr.ReadLine()) != null) { strData.Append(line+"\r\n"); } 阅读全文
摘要:
#region 日志记录、支持其他线程访问 public delegate void LogAppendDelegate(Color color, string text); public void LogAppendMethod(Color color, string text) { if (!richTextB... 阅读全文
摘要:
OpenFileDialog与SaveFileDialog都有RestoreDirectory属性,这个属性默认是false,打开一 个文件后,那么系统默认目录就会指向刚才打开的文件。如果设为true就会使用系统默认目录 阅读全文