Gets the specified module in this assembly.
[Visual Basic] Public Function GetModule( _ ByVal name As String _ ) As Module [C#] public Module GetModule( string name ); [C++] public: Module* GetModule( String* name ); [JScript] public function GetModule( name : String ) : Module;
The Module being requested
A type can be retrieved from a specific module using Module.GetType. Calling Module.GetType on the module containing the manifest will not initiate a search of the entire assembly. To retrieve a type from an assembly, regardless of which module it is in, you must call Assembly.GetType.
Assembly Class | Assembly Members | System.Reflection Namespace