How do you get all the classes in a namespace through reflection in C#?
feedback
|
|
Following code prints names of classes in specified ns defined in current assembly.
| |||||||||||||||||||||
feedback
|
|
Here's a fix for LoaderException errors you're likely to find if one of the types sublasses a type in another assembly:
That should help with loading types defined in other assemblies. Hope that helps! | |||
|
feedback
|
|
Explained here: http://www.dreamincode.net/code/snippet1539.htm Iterate over all classes in the assembly, and pick the ones with the correct value for their Namespace attribute. | |||
|
feedback
|
| |||||||||||||
feedback
|
|
Namespaces are actually rather passive in the design of the runtime and serve primarily as organizational tools. The Full Name of a type in .NET consists of the Namespace and Class/Enum/Etc. combined. If you only wish to go through a specific assembly, you would simply loop through the types returned by assembly.GetExportedTypes() checking the value of type.Namespace. If you were trying to go through all assemblies loaded in the current AppDomain it would involve using AppDomain.CurrentDomain.GetAssemblies() | |||
|
feedback
|
| ||||
|
feedback
|
|
You won't be able to get all types in a namespace, because a namespace can bridge multiple assemblies, but you can get all classes in an assembly and check to see if they belong to that namespace. Assembly.GetTypes() works on the local assembly, or you can load an assembly first then call GetTypes() on it. | |||
|
feedback
|