In a dll (GUI) I need to get a List of all namespaces in the current Application (so for example if I would bind that dll into a Project named "Hundekuchen", it should List
{ "GUI", "Hundekuchen" }
Is there any inbuilt function for this?
|
In a dll (GUI) I need to get a List of all namespaces in the current Application (so for example if I would bind that dll into a Project named "Hundekuchen", it should List
Is there any inbuilt function for this? |
||||
|
|
Look into the This may not be exactly whay you need but it shows the sort of things you can achieve, I am getting all the types in the currently executing assembly, iterates them and prints out the namespace of each type.
Just inspect the |
|||
|
No built-in function, but you can enumerate the types in the assembly, and get their namespaces.
|
|||||||||||||||
|
|
You can get a list of all assemblies in the AppDomain, then all classes in all loaded assemblies, but you will have to filter out the ones you don't want to see because there are lots of assemblies linked in from mscorlib and the System libraries. Here's a quick and dirty one (using .NET 3.5) - you might need to filter out a few more if you link other libraries you don't want to see:
|
|||
|