Sources for MS Framework

  • Thread starter Thread starter Ondrej Sevecek
  • Start date Start date
O

Ondrej Sevecek

Hello,
are there somewhere sources for the framework class libraries? Or does MS
provide only IL binaries?

Ondra.
 
There are 5 ways to get at the source, but doesn't mean it is MS source:

1) Look at Rotor
2) Look at Mono
3) Use ILDASM on the Framework
4) Use something like Reflector to read the source in C# (but won't be the
exact C#, but close). Also there are others that are much better at
decompiling than Reflector (Reflector tends to crash on some of my own stuff
and some parts of the Framework).
5) Get a job at Microsoft.


Thanks,
Shawn
 
It certainly would be nice for Microsoft to release the source to .NET one
day. It would make things much easier when you need to extend the
functionality of a control.

Chris
 
I tried anakrino also and it crashed on some of the MS functions and on many
of my own.


Thanks,
Shawn


Eric Newton said:
Anakrino works great as a C# decompiler, it gives me a lot of insight into
the framework, especially when evaluating the need to override or replace a
control...

http://www.saurik.com/net/exemplar/

DotNetCoders wrote something on it too:
http://www.dotnetcoders.com/web/Articles/ShowArticle.aspx?article=40

--
Eric Newton
C#/ASP Application Developer
http://ensoft-software.com/
(e-mail address removed)-software.com [remove the first "CC."]

Shawn B. said:
There are 5 ways to get at the source, but doesn't mean it is MS source:

1) Look at Rotor
2) Look at Mono
3) Use ILDASM on the Framework
4) Use something like Reflector to read the source in C# (but won't be the
exact C#, but close). Also there are others that are much better at
decompiling than Reflector (Reflector tends to crash on some of my own stuff
and some parts of the Framework).
5) Get a job at Microsoft.


Thanks,
Shawn


does
MS
 
Back
Top