Stopwatch + C#打印日志方法
打印一个接口、方法的运行时间在程序中是很容易遇到的一件事情;现在,我就分享一个我在工作中使用的临时打印日志的方法和结合 Stopwatch 打印测量某个时间间隔的运行时间的方法。
Stopwatch 实例可以很好的测量一个时间间隔的运行时间;以下例子是比较常用到的:
引用命名空间: using System.Diagnostics;
Stopwatch//Stopwatch 实例
Start;//开始或继续测量某个时间间隔的运行时间
Elapsed;//获取当前实例测量得出的总运行时间(以时分秒为单位)
ElapsedMilliseconds;//获取当前实例测量得出的总运行时间(以毫秒为单位)
Reset;//停止时间间隔测量,并将运行时间重置为零
Restart;//停止时间间隔测量,并将运行时间重置为零,然后开始测量运行时间
打印日志方法,目录也可以自己指定:
1 public static void WriteError(string message) 2 { 3 string path = AppDomain.CurrentDomain.BaseDirectory;//获取基目录 4 path = System.IO.Path.GetDirectoryName(path) + " \\ErrorLogs";//设置输出日志输出目录 5 try 6 { 7 if (!System.IO.Directory.Exists(path)) 8 { 9 System.IO.Directory.CreateDirectory(path); 10 } 11 string fileName = System.IO.Path.Combine(path, DateTime.Now.ToString("yyyy-MM-dd") + ".log"); 12 System.IO.StreamWriter sw = new System.IO.StreamWriter(fileName, true);//文件流创建写数据流 13 sw.WriteLine(DateTime.Now.ToString("HH:mm:ss:fff") + " -------------------"); 14 sw.WriteLine(message); 15 sw.WriteLine(); 16 sw.Close();//关闭写数据流 17 } 18 catch 19 { 20 } 21 }
结合Stopwatch 使用打印测量某个时间间隔的运行时间的方法
1 var s = new Stopwatch(); 2 //需要测试运行时间的的代码 3 WriteError(s.ElapsedMilliseconds.ToString() + " GetNewUpdateFileList");//打印运行时间
4 s.Reset();
注:方法为小七在工作中用到的方法,如果转载,请注明出处;
有不对或遗漏的地方,欢迎指出;
欢迎评论;
内容为小七在工作中遇到或在其他地方看到所做的总结,方便以后查看,仅供学习使用;
转载请注明出处;