Cgw.SmcError.ResHelper.Instance C# (CSharp) Method

Instance() public static method

单例模式实例
public static Instance ( ) : ResHelper
return ResHelper
        public static ResHelper Instance()
        {
            if (resInstance == null)
            {
                resInstance = new ResHelper();
            }

            return resInstance;
        }