vote up 0 vote down star

Given an instance of System.Reflection.Assembly.

flag

67% accept rate

5 Answers

vote up 7 vote down check

Not possible. Nothing specifies a "Root" namespace. The default namespace in the options is a visual studio thing, not a .net thing

link|flag
vote up 0 vote down

Namespaces have nothing to do with assemblies - any mapping between a namespace and the classes in an assembly is purely due to a naming convention (or coincidence).

link|flag
vote up 0 vote down

Get Types gives you a list of Type objects defined in the assembly. That object has a namespace property. Remember that an assembly can have multiple namespaces.

link|flag
vote up 2 vote down

Assemblies don't necessarily have a root namespace. Namespaces and Assemblies are orthogonal.

What you may be looking for instead, is to find a type within that Assembly, and then find out what its namespace is.

You should be able to accomplish this by using the GetExportedTypes() member and then using the Namespace property from one of the returned Type handles.

Again though, no guarantees all the types are in the same namespace (or even in the same namespace hierarchy).

link|flag
vote up 5 vote down

There could be any number of namespaces in a given assembly, and nothing requires them to all start from a common root. The best you could do would be to reflect over all the types in an assembly and build up a list of unique namespaces contained therein.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.