Cgw.SmcError.ResHelper.Instance C# (CSharp) 메소드

Instance() 공개 정적인 메소드

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

            return resInstance;
        }