Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
HomeAnnouncementsFree MagazinesWhite PapersSubmit Content
Discussion GroupsASP.NETWindows FormsLanguages.NET FrameworkVisual Studio.NET
Articles.NET FrameworkASP.NETToolsWindows Forms
.NET DirectoryOpen Source ProjectsUser GroupsWeb Resources
Related Topics
Visual Basic 6SQL ServerMS AccessOther DB ProductsMS Server ProductsMore Topics ...

.NET Forum / Visual Studio.NET / Extensibility / December 2004

Tip: Looking for answers? Try searching our database.

Enumerating all the classes in the solution (C#)

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
Ael - 06 Dec 2004 06:45 GMT
I am writing a Visual Studio.NET add in. As a start I would like to enumerate
all the classes in the  solution that consists of C# projects. So I am
writing:
Solution sln = dte.Solution;           
foreach (Project project in sln.Projects)
foreach (CodeElement codeElement in project.CodeModel.CodeElements)
if (codeElement.Kind == vsCMElement.vsCMElementNamespace)
{
//CodeNamespace codeNamespace = (CodeNamespace) codeElement;
foreach (CodeElement codeNamespaceElement in codeElement.Children)
{
if ( codeNamespaceElement.Kind == vsCMElement.vsCMElementClass )
{
CodeClass codeClass = ( CodeClass )codeNamespaceElement;
MessageBox.Show(codeClass.FullName);
}
}
}
However, trying to access codeElement.Children throws a
NonImplementedException. Is there any way out to enumerate all the classes in
the solution?
Thank you!                   
Carlos J. Quintero [.NET MVP] - 10 Dec 2004 09:00 GMT
Yes, for C#, VJ# and VB.NET projects you must use the Members property of
CodeNamespace, CodeClass, etc. instead of the Children property of
CodeElement.

Signature

Carlos J. Quintero

The MZ-Tools all-in-one add-in, now for .NET: http://www.mztools.com

>I am writing a Visual Studio.NET add in. As a start I would like to
>enumerate
[quoted text clipped - 20 lines]
> the solution?
> Thank you!

Free Magazines

Get these publications absolutely FREE for up to 12 months. There are no hidden fees and no obligation. Simply choose a title, complete the application form and submit it. Read more ...

Oracle MagazineNetwork ComputingComputer WorldBio-IT WorldeWeekInformation WeekInfosecurity
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.