码迷,mamicode.com
首页 > Windows程序 > 详细

c#写日志的函数

时间:2017-06-12 14:57:06      阅读:209      评论:0      收藏:0      [点我收藏+]

标签:app   append   try   ati   var   ring   cto   environ   dal   

public class LogClass
{
  public void Write(string content)
  {
    try
    {
    var directoryPath = System.Windows.Forms.Application.StartupPath;
    var filePath = directoryPath + "\\" + DateTime.Now.ToString("yyyy-MM-dd") + "a.log";
    File.AppendAllText(filePath, DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"));
    File.AppendAllText(filePath, Environment.NewLine);
    File.AppendAllText(filePath, content);
    File.AppendAllText(filePath, Environment.NewLine);
    }
   catch (Exception ex)
    {
      Console.Write(ex.ToString());
    }
  }
}

c#写日志的函数

标签:app   append   try   ati   var   ring   cto   environ   dal   

原文地址:http://www.cnblogs.com/Cpart/p/6992344.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!