摘要: C# ini文件操作类 using System; using System.Collections.Generic; using System.Linq; using System.Runtime.InteropServices; using System.Text; using System.I 阅读全文
posted @ 2025-10-14 16:39 杰西卡若 阅读(9) 评论(0) 推荐(0)
摘要: C# 泛型懒汉单例类 using System; namespace SingletonHepler { public sealed class Singleton<T> where T : class, new() { private static readonly Lazy<T> _instan 阅读全文
posted @ 2025-10-14 16:28 杰西卡若 阅读(8) 评论(0) 推荐(0)
摘要: C# 日志类 using System; using System.IO; using System.Text; namespace Log { public enum LogLevel { DEBUG, INFO, ERROR, WARNING, TRACE }; public class Log 阅读全文
posted @ 2025-10-14 16:26 杰西卡若 阅读(7) 评论(0) 推荐(0)