Answer Posted / mahesh kotekar
MSIL stands for Microsoft Intermediate Language in short
MSIL or IL(Intermediate Language). When you compile a
program the CLR will compile the code into MSIL code. which
will then be included in the assembly[exe/dll]. When you run
the program in client place. The clr will manage to convert
the MSIL into machine language by a process called Jitting.
CTS =? Common Type Specifications. A set of specifications
defined by the dotnet framework. Every type in dotnet should
comploy with CTS specifications. For example
int16,int32,int64 in C# belongs to dotnet type Int and
integers in VB.net is asso same as dotnet type Int. This
will help in Interlanguage Interoperation :) Correct me if
am wrong!!!!
Is This Answer Correct ? | 22 Yes | 19 No |
Post New Answer View All Answers
what is entity sql?
Explain dependency resolution?
Why is entity framework used?
Explain something about model, view and controllers in asp.net mvc?
Does .NET Framework support SAX?
What are the Core features of ASP.NET MVC?
What is filters in web api?
explain what does .edmx file contains?
How can I tell what .net framework is installed?
What is namespace of asp.net mvc?
Which is the root namespace for fundamental types in .net framework?
what do you mean by navigation property?
Is http stateful or stateless?
What is Peek method in Tempdata in ASP.Net MVC?
Does Tempdata hold the data for other request in ASP.Net MVC?