- 最后登录
- 2016-8-29
- 注册时间
- 2012-8-25
- 阅读权限
- 90
- 积分
- 23585
- 纳金币
- 20645
- 精华
- 62
|
- 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信息都保存在本地上,方便随时查看,也就是历史记录啦!
|
|