Gets all the modules that are part of this assembly.
[Visual Basic] Public Function GetModules() As Module () [C#] public Module[] GetModules(); [C++] public: Module* GetModules() []; [JScript] public function GetModules() : Module[];
An array of modules.
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