public Type GetTypeByName(string name, bool ignoreCase) { if (String.IsNullOrWhiteSpace(name)) { return(null); } return(m_Names.Get(name, ignoreCase)); }
public Type GetTypeByName(string name, bool ignoreCase) { return(m_TypesByName.Get(name, ignoreCase)); }
public IEnumerable <Type> GetTypesByFullName(string fullName, bool ignoreCase) { return(m_FullNames.Get(fullName, ignoreCase)); }
public IEnumerable <Type> GetTypesByName(string name, bool ignoreCase) { return(m_Names.Get(name, ignoreCase)); }
public Type GetTypeByFullName(string fullName, bool ignoreCase) { return(m_FullNames.Get(fullName, ignoreCase)); }
public IEnumerable <Type> GetTypesByFullNameHash(int hash) { return(m_FullNames.Get(hash)); }