GZLogHelper使用文档
Nuget 引用
GZ.LogHelper
记录文本文件
示例
public class Logs { public static LogTxt _intance; public static LogTxt Log { get { if (_intance == null) { string logPath = System.IO.Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "logs"); _intance = new LogTxt(logPath); } return _intance; } } }
GarsonZhang www.yesdotnet.com
版权声明:本文为YES开发框架网发布内容,转载请附上原文出处连接
GZLogHelper YES开发框架