Organizing metadata

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

belangour abdessamad

Hi,
In the metadata for an exe file for example, there is classes organized in
namespaces.
the GetExportedTypes methods returns all types. I need to get the names of
namspaces and to organize these classes in their corresponding namespaces.
Any help would be appreciated.
Thanks.
 
I need to get the names of
namspaces and to organize these classes in their corresponding namespaces.

The Type class has a Namepsace property, so it should be pretty easy
to iterate through the types and get a list of namespaces used in the
assembly.



Mattias
 
Back
Top