need help

  • Thread starter Thread starter p.sunil
  • Start date Start date
p.sunil said:
How to find the different class names in a name space
programatically.

Do you know which assemblies you want to search in? If so, for each
assembly, get all the types in the assembly, and for each type, check
whether or not the namespace matches. You'll need:

Assembly.GetTypes()
Type.Namespace
 
Back
Top