纳金网

标题: 小工具大帮助之自定义Debug [打印本页]

作者: 王者再临    时间: 2014-10-18 03:28
标题: 小工具大帮助之自定义Debug
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.IO;//需要引用的头文件

  6. namespace xxxxxx
  7. {
  8.     class Debug
  9.     {
  10.         private static string filePath = @"C:\People_Log.txt";
  11.         public static void Log(string s)
  12.         {
  13.             FileStream fs = new FileStream(filePath, FileMode.Append, FileAccess.Write);
  14.             StreamWriter sw = new StreamWriter(fs);
  15.             sw.WriteLine(s + "\t" + DateTime.Now);
  16.             sw.Close();
  17.         }
  18.     }
  19. }
复制代码
备注:主要是把所有的Debug信息都保存在本地上,方便随时查看,也就是历史记录啦!


作者: hyui    时间: 2014-10-18 03:54
Good to know this one !
作者: 我不再年轻    时间: 2014-11-6 19:55
不错的小工具,多谢分享!




欢迎光临 纳金网 (http://wwww.narkii.com/club/) Powered by Discuz! X2.5