摘要:
1.文件写入 // 路径,写入内容 System.IO.File.WriteAllText(@".\File.txt", string.Empty); 可更换相应的方法 2.文件读入 // 路径 返回 string System.IO.File.ReadAllText(@".\File.txt"); 阅读全文
摘要:
1. 设定计时器相关属性,使用委托方法处理事件触发 DispatcherTimer dispatcherTimer= new DispatcherTimer(); dispatcherTimer.Tick += new EventHandler(dispatcherTimer_Tick);dispa 阅读全文