Downloadable/browsable version of the .NET Framework source code?

后端 未结 8 1261
星月不相逢
星月不相逢 2020-12-30 02:01

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

8条回答
  •  醉话见心
    2020-12-30 02:24

    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.

提交回复
热议问题