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
How to answer for project questions..?
What is viewbag title?
What is definingquery in entity framework? : Entity framework
What is entity framework used for?
mention what are the various methods provided by the dataset object to generate xml?
Is razor a server side?
Can I add asp.net mvc testcases in visual studio express?
what is eager loading?
What is layout in mvc?
What is the "helperpage.isajax" property?
What are the main features of asp.net mvc 4 used by asp.net web api?
How route table is created in ASP.NET MVC?
how do you mark a property as required? For example, for a project, the name is a required field.
What is a model in programming?
What is the mvc pattern (model view controller pattern)?