How .NET is able to support multiple languages?

Answers were Sorted based on User's Feedback



How .NET is able to support multiple languages?..

Answer / hardikatrivedi2

.Net is able to support multiple languages bacause of
CLR.When .net code is compliled the CLR will generate
MSIL(Microsoft Intermediate Language) from the source
code.This MSIL is not language apecific and it can be used
for any language.This MSIL will later converted to machine code.

Is This Answer Correct ?    34 Yes 2 No

How .NET is able to support multiple languages?..

Answer / kinjal

The language compile in commom language runtime in .net. in .net code is compile on MSIL(microsoft intermediate language)
is called managed code. Managed code run on .net environment.
After compilation of IL the language is not barrier. the code is call or written function in another language.

Is This Answer Correct ?    11 Yes 2 No

How .NET is able to support multiple languages?..

Answer / ris

Because Common Runtime Language,CTS,CLS.

Is This Answer Correct ?    9 Yes 5 No

How .NET is able to support multiple languages?..

Answer / khagendra(icte)

because CLR have its own CLS and it uses MSIL to convert the language into native through JIT compiler

Is This Answer Correct ?    1 Yes 0 No

How .NET is able to support multiple languages?..

Answer / madhusree.p

because it is CLS(Common language specification) and CTs
(common type specification)

eg: for example under properties window i am creating three
folder images(contains images),messages(contains messages)
and resources(contains GUI)

Is This Answer Correct ?    1 Yes 2 No

Post New Answer

More Dot Net General Interview Questions

How do you create threading in .NET? What is the namespace for that?

2 Answers  


What are the two main parts of the .net framework?

1 Answers  


Which namespace is the base class for .net Class library?

1 Answers  


What are an object and a class?

1 Answers  


What is strong name?

2 Answers  


What is meant by managed and unmanaged code?

1 Answers  


How will u load dynamic assembly? How will create assemblies at run time?

1 Answers  


What is new in .net core?

1 Answers  


What's wrong with a line like this? Datetime.parse(mystring);

1 Answers  


What is connection pooling and how do you make your application use it?

1 Answers  


diff between forms authentication and windows authentication?

11 Answers  


Which is the main Difference Between .Net 2003 and .Net 2005?

1 Answers  


Categories