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
파일: Library.cs 프로젝트: nogu3ira/xrunuo
 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));
 }