/// <summary> /// 单例初始化器 /// </summary> /// <returns></returns> public static LogoConfigManager Instance() { if (_instance == null) { lock (lockObject) { if (_instance == null) { _instance = new LogoConfigManager(); } } } return _instance; }
/// <summary> /// 单例初始化器 /// </summary> /// <returns></returns> public static LogoConfigManager Instance() { if (_instance == null) { lock (lockObject) { if (_instance == null) { _instance = new LogoConfigManager(); } } } return(_instance); }