Home  >  Article  >  Backend Development  >  Type.GetType()

Type.GetType()

巴扎黑
巴扎黑Original
2016-12-20 11:23:132773browse

// .net code 

private Type GetType(string className) 

    // Creates current domain. 
    AppDomain currentDomain = AppDomain.CurrentDomain; 

    // Makes an array for the list of assemblies. 
    Assembly[] assems = currentDomain.GetAssemblies(); 

    Type type = null; 
    for (int j = 0; j < assems.Length; j++) 
    { 
        Type[] types = assems[j].GetTypes(); 
        for (int k = 0; k < types.Length; k++) 
        { 
            if (types[k].Name.Equals(className) || (types[k].FullName.Equals(className))) 
            { 
                type = types[k]; 
                break; 
            } 
        } 
        if (type != null) 
        { 
            break; 
        } 
    } 

    return type; 

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn