c# 添加日志
Posted mzg121584668
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c# 添加日志相关的知识,希望对你有一定的参考价值。
private static void setlog(string message) string logPath = System.AppDomain.CurrentDomain.BaseDirectory + "\\log\\"; if (!Directory.Exists(logPath))//没有则创建 Directory.CreateDirectory(logPath); using (FileStream stream = new FileStream(logPath + DateTime.Now.ToString("yyyyMMddHHmm") + ".txt", FileMode.Append)) using (StreamWriter writer = new StreamWriter(stream)) writer.WriteLine($"DateTime.Now:message");
以上是关于c# 添加日志的主要内容,如果未能解决你的问题,请参考以下文章