Posts

Showing posts from August, 2017
Image
MSIL(Microsoft intermediate language): MSIL stand for microsoft intermediate code or it is also called intermediate languange (IL).When your .net language program is complied it is first converted into the MSIL code.The MSIL code is a CPU independent code (ie the MSILcode is not dependent on the CPU ) that can easily converted into the native code.During the runtime the Just In Time (JIT) convert the MSIL code into the Native Code to the operating system When a compiler produces Microsoft Intermediate Language (MSIL), it also produces Metadata. The Microsoft Intermediate Language (MSIL) and Metadata are contained in a portable executable (PE) file . Microsoft Intermediate Language (MSIL) includes instructions for loading, storing, initializing, and calling methods on objects, as well as instructions for arithmetic and logical operations, control flow, direct memory access, exception handling, and other operations. Feature of MSIL code: 1.MSIL code provide language interoperabil
What is .net framework? The .Net framework is a software development platform developed by Microsoft. The framework was meant to create applications, which would run on the Windows Platform. The first version of the .Net framework was released in the year 2000. The version was called .Net framework 1.0. The .Net framework has come a long way since then, and the current version is 4.6.1. The .Net framework can be used to create both - Form based and Web based applications. Web services can also be developed using the .Net framework. The framework also supports various programming languages such as Visual Basic and C#. So developers can choose and select the language to develop the required application. In this chapter, you will learn some basics of the .Net framework. In this tutorial, you will learn- ·         What is the .NET Framework ·         Different versions of the .Net framework The architecture of the .Net framework is based on the following key compone