GetTypes() method

  • Thread starter Thread starter belangour abdessamad
  • Start date Start date
B

belangour abdessamad

Hi all,
Is there any way or a flag to force the GetTypes() method of a Module class
not to get nested types of a Type object ?
(Because a TYPE object has a method called GetNestedTypes() for retrieving
nested types)
Thanks in advance.
 
belangour,

No, there is not. You will have to take the results and then cycle
through them, removing the ones from the set that are nested types.

Hope this helps.
 
Back
Top