Is it possible to obtain the source code for built in classes in .NET More specifically, I would like to see the source code for the PictureBox class, preferably written in C#. Is it possible to get this piece of source code
Is it possible to obtain the source code for built in classes in .NET More specifically, I would like to see the source code for the PictureBox class, preferably written in C#. Is it possible to get this piece of source code
source code for .NET classes
JerryCan
- Shared Source Common Language Infrastructure 2.0 Release
- Microsoft Shared Source Initiative Encourages Academic Innovation
- Microsoft Releases Shared Source CLI and C# Implementation
If you just want to browse and search through the BCL is suggest a reflector, the best one is: Lutz Roeder's .NET Reflector, this will generate source code based om MSIL.Todd.Net
Download reflector from here: http://www.aisto.com/roeder/dotnet/
Next, download the dissasembler add-in from here: http://www.denisbauer.com/NETTools/FileDisassembler.aspx
Sven