コード例 #1
0
        public string GetMetaString(string name, bool ignoreCase = false)
        {
            ResXResourceSet resx = resxResourceSet;

            if (resx == null)
            {
                Throw.ObjectDisposedException();
            }

            return((string)resx.GetMetaInternal(name, ignoreCase, true, resx.SafeMode, resx.CloneValues));
        }
コード例 #2
0
        public object GetMeta(string name, bool ignoreCase, bool isString, bool asSafe, bool cloneValue)
        {
            ResXResourceSet resx = resxResourceSet;

            if (resx == null)
            {
                Throw.ObjectDisposedException();
            }

            return(resx.GetMetaInternal(name, ignoreCase, isString, asSafe, cloneValue));
        }