tags:

views:

58

answers:

2

Possible Duplicate:
What language is .NET Framework written in?

in which language .net framework has been written?

+5  A: 

The majority of the BCL is is written in C#. It does rely on many native Win32 APIs via PInvoke.

The actual CLR is written in C++

JaredPar
A: 

The .NET framework consists of many components: the language compilers, the BCL, the CLR, ... Some are written in unmanaged C++, other parts in managed .NET.

Darin Dimitrov