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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top