0 votes
in Dot Net by
How is it possible for .NET to support many languages?

1 Answer

0 votes
by

The .NET language code is compiled to Microsoft Intermediate Language (MSIL). The generated code is called managed code. This managed code is run in .NET environment. So after compilation the language is not a barrier and the code can call or use function of another language also.

...