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

What is concurrency? How will you avoid concurrency when dealing with dataset?

0 Answers  


Describe session handling in a webform, how does it work and what are the limitations?

0 Answers  


How is meant by dll in .net?

0 Answers  


What is WSDL? Explain its architecture?

0 Answers   Amdocs,


Which namespace is require to used XML in .NET?

0 Answers   Sans Pareil IT Services,


How can I tell if .net 3.5 is installed?

0 Answers  


What are the similarities and difference between class and structure in .net?

0 Answers  


differance between checkbox and rediobutton in vb.net?

2 Answers  


Explain what is the reason of occurring overflow-underflow arithmetic exception error, it shows error message when we run our program by adding control?

0 Answers  


DateTime[] dt = new DateTime[10] for(i=0; i<10; i++) { dt[i] = DateTime(2008, 1, i+1) } How many heap object will be created for the above array. Choose the correct answer below. Ans: 1, 10, 11, 12

3 Answers  


what is assembly?

2 Answers   Manhattan,


. How .NET can support multiple languages?

1 Answers  


Categories