Debugging in C#

  • Thread starter Thread starter Geeta
  • Start date Start date
G

Geeta

hi,

I am fresher in C#.I am learning this language of my own.
So as a beginner i am facing some problems with debugging.
The way we debug in Vc++ applications, we will be able to
see the win32 code and all. So the same way when i am
debugging c# programs i would like to get in to the
classes like Console and wrilteline functions to see how
they work..

can anybody help me out this

Thanks
Geeta
 
Console Class is inside a compiled library & hence you cant see the
source code behind it (The same way you cant see the implementation of
MFC Classes)

Although, you can use ildasm.exe to see the intermediate language code
(similar to java bytecode) behind any library

HTH
 
Back
Top