in which language .net framework has been written? [duplicate]
Possible Duplicate:
What language is .NET Framework written in?
in which language .net framework has been written?
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++
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.
精彩评论