示例#1
0
        public bool ContainsCulture(string key)
        {
            bool found = false;

            if (m_useCustomCulture)
            {
                found = m_customCultures.ContainsKey(key);
            }

            if (!found)
            {
                found = Cultures.ContainsKey(key);
            }

            return(found);
        }