what is meant by language interoperability and language
integration?
Answer / mary
Prior to the introduction of .Net, the code written in one
programming language is considered to be usable only in the
programs written with the same programming languages. For
example, an algorithm implemented in Perl programming
language can not be reused in the programs written in the
C++. At Windows platform, Microsoft introduced the
standards for COM (Component Object Model) which allows
components written in one programming language to be used
in other programming language. In Java, JNI (Java Native
Interface) is presented to use-up the code written in non-
Java languages into Java programs. But both the standards
(COM and JNI) are too complex and have their own
limitations. They also don’t allow the language
integration, which means that you can use the components
written in other programming languages but you can’t extend
the functionality of the components.
In Microsoft.Net, the code written in any programming
language is compiled to the same Intermediate Language
(Microsoft Intermediate Language - MSIL or Common
Intermediate Language – CIL) and to same component standard
(assembly). Hence, it is possible for developers to employ
the language interoperability by using and extending the
solution implemented by other developers which might be
using different programming language provided developers at
both end are using.Net compliant programming languages.
| Is This Answer Correct ? | 3 Yes | 0 No |
What i sthe meaning of .(dot) in .Net?
What is the numeric attribute of the textbox control in .net mobile? : Microsoft dot net mobile
1. How to restrict a class from allowing to create only one object. I.e., one should be allowed to create only one object of the class type.
1 Answers 247Customer, FinEngine, TCS,
Can I customise the trace output?
What is a clickonce application?
What is the difference between absolute expiration and sliding-time expiration?
Does .NET runtime offer Deterministic Destruction or not?
What is CLR,MSIL and Jit Compiler and their roll in .net
Explain the race around condition? : Dot net architecture
What do you know about machine.config file ?
What is a managed code? : Dot net architecture
How does an appdomain get created?