Get() публичный Метод

public Get ( string key, bool ignoreCase ) : Type
key string
ignoreCase bool
Результат System.Type
Пример #1
0
        public Type GetTypeByName(string name, bool ignoreCase)
        {
            if (String.IsNullOrWhiteSpace(name))
            {
                return(null);
            }

            return(m_Names.Get(name, ignoreCase));
        }
Пример #2
0
 public Type GetTypeByName(string name, bool ignoreCase)
 {
     return(m_TypesByName.Get(name, ignoreCase));
 }
Пример #3
0
 public IEnumerable <Type> GetTypesByFullName(string fullName, bool ignoreCase)
 {
     return(m_FullNames.Get(fullName, ignoreCase));
 }
Пример #4
0
 public IEnumerable <Type> GetTypesByName(string name, bool ignoreCase)
 {
     return(m_Names.Get(name, ignoreCase));
 }
Пример #5
0
 public Type GetTypeByFullName(string fullName, bool ignoreCase)
 {
     return(m_FullNames.Get(fullName, ignoreCase));
 }
Пример #6
0
 public IEnumerable <Type> GetTypesByFullNameHash(int hash)
 {
     return(m_FullNames.Get(hash));
 }