Now that the source code to the .NET Framework has been made available, is there any way to actually view it that doesn\'t involve using Visual Studio to step into a framewo
I always just use Reflector - just load a .Net assembly, highlight the class/method you're interested in, hit space and there you go. It puts links in everywhere so you just click a type and it'll take you to the code for that.
It'll be slightly different to the actual source code as it's basically a decompiler, but it's still enough to see how various framework classes work.