Namespace mapper utility

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Does anyone know if a utility available that can iterate through all the assemblies in a project and build a single map of your namespace? What I need is something like the class view in VS.NET except that I need it for the entire solution and not broken down by individual assemblies? I know that I can use reflection to build this pretty easily, but I'm hoping that someone has already build a robust solution for this

Thanks

Ian
 
Can you take a look at
http://www.windowsforms.net/Terrarium/docs/ObjectModel/OrganismBase.(none).aspx
and let me know what you think of that object model presentation.

I wrote that about 2 years ago, and I could probably dig up the code.


--
Justin Rogers
DigiTec Web Consultants, LLC.
Blog: http://weblogs.asp.net/justin_rogers

R. Ian Lee said:
Does anyone know if a utility available that can iterate through all the
assemblies in a project and build a single map of your namespace? What I need
is something like the class view in VS.NET except that I need it for the entire
solution and not broken down by individual assemblies? I know that I can use
reflection to build this pretty easily, but I'm hoping that someone has already
build a robust solution for this.
 
Justin

Thanks, but that's not quite what I'm looking for. I need something that resembles the Class View in Visual Studio except that at the top of the tree, it would have the solution instead of the component. Something like..

[My Big Multi-Component Solution
{} MyCompan
{} We
* SomeBaseClas
* AnotherBaseClassFromADifferentComponen
{} U
* MyUIHelperClassFromComponent
* MyUIHelperClassFromComponent

You get the point... Someone must have written something like this. Surely, people aren't manually verifying that programmers are remembering to put everything in place according to the designed framework? Well, actually they are (I'm one of them) but it seems like a real waste of time when such a utility would make it so easy to verify

Well, if I don't get a response pretty soon I guess I'll have to spit one out... :

Thanks

Ian
 
Back
Top