纳金网
标题:
小工具大帮助之自定义Debug
[打印本页]
作者:
王者再临
时间:
2014-10-18 03:28
标题:
小工具大帮助之自定义Debug
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.IO;//需要引用的头文件
namespace xxxxxx
{
class Debug
{
private static string filePath = @"C:\People_Log.txt";
public static void Log(string s)
{
FileStream fs = new FileStream(filePath, FileMode.Append, FileAccess.Write);
StreamWriter sw = new StreamWriter(fs);
sw.WriteLine(s + "\t" + DateTime.Now);
sw.Close();
}
}
}
复制代码
备注:主要是把所有的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