Where can I find .NET sources to download? [closed]
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this questionWhere can I download source code for the .NET Framework? I mean sou开发者_如何学Gorces of libraries. I need the source for reflection methods like invoke
and other.
As stated by others you can use reflector and ILDASM to get the source of the framework code, however you should first visit http://referencesource.microsoft.com and download the reference source that MS has released.
I've done this with all the frameworks since 3.5
You can set up symbols in Visual Studio to automatically be able to step in the framework code, or use .NET Mass Downloader to download all the source files in one pass.
Use RedGates .NET Reflector with it comes a perfectly good dissassambler which can produce code for you, it even creates the files for you.
精彩评论