Source code of .NET Framework classes

  • Thread starter Thread starter Hawix
  • Start date Start date
H

Hawix

Hi all,

Does source code of base classes of .NET is available for developers?
Borland always has published a main part source code of the VCL (Delphi).
Does Microsoft too?

Regards,
Marcin Lis

P.S.
There is no better help then source code of libraries ;)
 
Hawix said:
Does source code of base classes of .NET is available for developers?
Borland always has published a main part source code of the VCL
(Delphi). Does Microsoft too?

No, but if you need to look at how a method works, you can always
disassemble a part of a class by using ILDASM or better, Anakrino or
Lutz Roeder's Reflector (both can decompile to VB or C#)
 
ROTOR - or the shared source CLI is a very good course.

http://www.microsoft.com/downloads/...FA-7462-47D0-8E56-8DD34C6292F0&displaylang=en

It doesn't have the entire library and the JIT and GC are not the production versions but its got most of the things you might be interetsed in.

Regards

Richard Blewett - DevelopMentor

http://staff.develop.com/richardb/weblog

nntp://news.microsoft.com/microsoft.public.dotnet.framework/<[email protected]>

Hi all,

Does source code of base classes of .NET is available for developers?
Borland always has published a main part source code of the VCL (Delphi).
Does Microsoft too?

Regards,
Marcin Lis

P.S.
There is no better help then source code of libraries ;)



---
Incoming mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.766 / Virus Database: 513 - Release Date: 17/09/2004



[microsoft.public.dotnet.framework]
 
No, but if you need to look at how a method works, you can always
disassemble a part of a class by using ILDASM or better, Anakrino or
Lutz Roeder's Reflector (both can decompile to VB or C#)

It's a very sad fact but very helpful method ;)

Thanks a lot and greatings,
Marcin Lis
 
Hawix said:
It's a very sad fact but very helpful method ;)

Ahem, I forgot to mention ROTOR and MONO but David and Richard corrected
this mistake. This is not exactly the source code of what you're using
under Windows but this is a good start if you want to understand how
things work. I think that O'Reilly has a book about the CLI.
 
David said:
the MONO has the complete source code. Is for linux, but you can download
the source and look in your windows OS

http://www.go-mono.com

Mono isn't just for Linux:

<quote>
Question 52: What operating systems does Mono run on?

Mono is known to run on Linux, UNIX and Windows systems.
</quote>
 
Back
Top