Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Step through .NET Framework Source Code?

Tags:

c#

.net

I wasn't sure how to word the question but I would like to step through code as it goes through the .NET classes/methods, etc.

Earlier I had asked about how to view the code for the classes in the .NET library and I ended up with .NET Reflector which I promptly downloaded. Now, as an example, I am looking for more info.

I have a method in my program that looks like:

public bool DoThisJob(string job)
{
  if (jobsICanDo.Contains(job))
           return true;
}

Where jobsICanDo is an array of strings containing the different jobs.

When I execute that code, the "Contains(job)" method, I would like to be able to step through the code as it goes all the way through .NET libraries and classes involved in returning the result.

In a nutshell, I am a noob and I want to understand how all the libraries work. I don't just want to accept that it works and move on.

My specific question is now that I have .NET Reflector and can view the code in all the .NET libraries is there a way for me to actually see this code in action and watch as my input traverses through the .NET libraries and classes?

EDIT There seems to be at least a bit of confusion over what, exactly, I am looking for. I set a breakpoint at the if (jobsICanDo.Contains(job)). I run my program and it does its thing and when it gets there it stops. When step into the next line of code it just returns true and keeps on going. What I want to do is see what that Contains method is doing just like the rest of my code.

like image 576
Pete Avatar asked Dec 30 '22 01:12

Pete


1 Answers

Yes, use the debugger, but see Configuring Visual Studio to Debug .NET Framework Source Code.

like image 180
John Saunders Avatar answered Jan 01 '23 15:01

John Saunders