Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where can I find .NET sources to download? [closed]

Where can I download source code for the .NET Framework? I mean sources of libraries. I need the source for reflection methods like invoke and other.

like image 811
jitm Avatar asked May 31 '10 08:05

jitm


2 Answers

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

like image 165
Preet Sangha Avatar answered Nov 17 '22 07:11

Preet Sangha


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.

like image 29
Julien Lebosquain Avatar answered Nov 17 '22 08:11

Julien Lebosquain