Possible Duplicates
Excuse me. How to get all classes within namespace?
Excuse me. How to get all classes within namespace? | ||||
|
feedback
|
|
You will need to do it "backwards"; list all the types in an assembly and then checking the namespace of each type:
Example of usage:
| |||||||||||||||||||
feedback
|
|
You'll need to provide a little more information... Do you mean by using Reflection. You can iterate through an assemblies Manifest and get a list of types using
If it's just in Visual Studio, you can just get the list in the intellisense window, or by opening the Object Browser (CTRL+W, J) | |||
|
feedback
|
|
With Reflection you cal loop through all the types in an assembly. A type has a Namespace property which you use to filter only the namespace you're interested in. | |||
|
feedback
|