Get() public méthode

public Get ( string key, bool ignoreCase ) : Type
key string
ignoreCase bool
Résultat System.Type
Exemple #1
0
        public Type GetTypeByName(string name, bool ignoreCase)
        {
            if (String.IsNullOrWhiteSpace(name))
            {
                return(null);
            }

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