stepping into framework code in C# Express 2008

A

Andrus

How to step or look into commented .NET framework source code ?

I havent found any way.

Using Visual C# 2008 Express Edition.

Andrus.
 
M

Marc Gravell

I'm confused as to what you want to do... comments simply don't
exist(*) outside of the original file, and the compiler wouldn't
assume they are code anyway, so no "step into" short of edit-and-
resume and uncommenting it.

The exception is the triple-slash xml comments, which are optionally
bundled into the documentation xml file; if this xml file is present
for a referenced assembly, you can see these comments in intellisense,
or the "show definition" view.

Can you clarify what you want to do / see?

Marc
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top