No classlist?

Hi!

I'm using VS2005-PE and more specifically VB.NET. In the help files you can get the classes grouped by the namespace they're in, but I can't find a way to get a raw list of all available classes. Is this possible? In Javadoc (java) you can and I think it's a great way to search for a suitable class if you're not entirely sure what you're looking for.

Am I making sense? :)

[403 byte] By [Magos] at [2007-12-24]
# 1

Have you tried the "Class View" window....

from the main menu...View...Class View...

That will display a list of all project classes and referenced classes in your project...if you are wanting to view all .net namespaces and classes then check out the object browser....View...Object Browser

DMan1 at 2007-8-31 > top of Msdn Tech,Visual Basic,Visual Basic IDE...
# 2
Not in my project, all classes in the entire framework. And the object browser seems to sort them by namespace, which I don't want. I want a plain raw dirty ugly linear list. Also, the object browser seems to skip lots of classes (like System.Collections).
Magos at 2007-8-31 > top of Msdn Tech,Visual Basic,Visual Basic IDE...
# 3

Hey Magos,

The object browser is your best bet for browsing all classes in the framework....It has several settings to allow you to cusomize the view....you can turn of viewing namespaces and view the containers...but as far as just getting a raw list of classes to browse...the object browser is your friend

DMan1 at 2007-8-31 > top of Msdn Tech,Visual Basic,Visual Basic IDE...