System.Reflection.Module.GetType C# (CSharp) Method

GetType() private method

private GetType ( String className ) : Type
className String
return Type
        public virtual Type GetType(String className) {
            return GetType(className, false, false);
        }

Same methods

Module::GetType ( String className, bool ignoreCase ) : Type
Module::GetType ( String className, bool throwOnError, bool ignoreCase ) : Type

Usage Example

Esempio n. 1
0
 /// <summary>
 /// Creates a new AbpModuleInfo object.
 /// </summary>
 /// <param name="instance"></param>
 public ModuleInfo(Module instance)
 {
     Dependencies = new List<ModuleInfo>();
     Type = instance.GetType();
     Instance = instance;
     Assembly = Type.Assembly;
 }
All Usage Examples Of System.Reflection.Module::GetType