Get() public method

public Get ( string key, bool ignoreCase ) : Type
key string
ignoreCase bool
return 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
ファイル: ScriptCompiler.cs プロジェクト: Evad-lab/ServUOX
 public IEnumerable <Type> GetTypesByFullName(string fullName, bool ignoreCase)
 {
     return(m_FullNames.Get(fullName, ignoreCase));
 }
コード例 #4
0
ファイル: ScriptCompiler.cs プロジェクト: Evad-lab/ServUOX
 public IEnumerable <Type> GetTypesByName(string name, bool ignoreCase)
 {
     return(m_Names.Get(name, ignoreCase));
 }
コード例 #5
0
ファイル: ScriptCompiler.cs プロジェクト: jizzyjim/16Below
 public Type GetTypeByFullName(string fullName, bool ignoreCase)
 {
     return(m_FullNames.Get(fullName, ignoreCase));
 }
コード例 #6
0
ファイル: ScriptCompiler.cs プロジェクト: zmazza/ServUO
 public IEnumerable <Type> GetTypesByFullNameHash(int hash)
 {
     return(m_FullNames.Get(hash));
 }