public bool ContainsCulture(string key) { bool found = false; if (m_useCustomCulture) { found = m_customCultures.ContainsKey(key); } if (!found) { found = Cultures.ContainsKey(key); } return(found); }