need help

  • Thread starter Thread starter p.sunil
  • Start date Start date
P

p.sunil

How to find the different class names in a name space
programatically.

sunil
 
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
 

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

Similar Threads

counting numbers 3
Question 2
what are fields in a class 2
what is abstract class 2
How to use Buffered Stream 1
Extend RuleSetDialog in Windows Workflow 0
formula 3
Unable to delete folder with too long name 3

Back
Top