Você não pode selecionar mais de 25 tópicos
Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
|
- using System;
-
- /* ***********************************************
- * subject 单例对象基类
- * author 张原川
- * date 2019/6/3 9:49:03
- * ***********************************************/
-
- namespace BPASmartClient.Helper
- {
- /// <summary>
- /// 单例对象基类
- /// </summary>
- /// <typeparam name="T"></typeparam>
- public class Singleton<T> where T : new()
- {
- private static object _async = new object();
-
- private static T _instance;
-
- static readonly Lazy<T> instance = new();
- /// <summary>
- /// 获取实例
- /// </summary>
- /// <returns></returns>
- public static T GetInstance()
- {
- return instance.Value;
- }
- }
- }
|