public bool ContainsMeta(string name, bool ignoreCase)
        {
            ResXResourceSet resx = resxResourceSet;

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

            return(resx.ContainsMeta(name, ignoreCase));
        }