摘要:
/// /// 缓存帮助类 /// public class MemoryCacheHelper { private static readonly MemoryCache Cache = new MemoryCache(new MemoryCacheOptions()); /// /// 验证缓存项是否存在... 阅读全文
摘要:
public class RuntimeHelper { /// /// 获取项目程序集,排除所有的系统程序集(Microsoft.***、System.***等)、Nuget下载包 /// /// public static IList GetAllAssemblies() { ... 阅读全文