Explain PE file format in .NET

Explain PE file format in .NET

PE represents a Portable Executable. Windows executable record (.EXE ) and DLL (Dynamic Link Library) pursue the PE document group. This is subordinate of the Microsoft Common Object File Format (COFF). A .NET PE document group comprises 4 sections: PE/COFF headers CLR header CLR information Metadata MSIL code Native image section COFF header contains data … Read more

Differences between managed and unmanaged code in .Net

DifferencesDifferences between managed and un-managed code in .Net between managed and un-managed code in .Net

In this post, we will get familiar with the contrasts among oversaw and un-oversaw code in .Net and how we can distinguish which whether a code is overseen or un-overseen? There are following point that clears the distinction among oversaw and un-oversaw code: Overseen code is the code which is executed by Common Language Runtime … Read more

Define CLS and CTS in .Net

Define CLS and CTS in .Net

Basic Language Specification (CLS) CLS represents normal Language Specification, as we realize that there are numerous dialects utilized in .NET Framework. CLS characterizes some arrangement of decides that must be trailed by each .NET language to be a .NET agreeable language. This arrangement of rules is utilized to empower interoperability between two .NET-agreeable dialects. CLS … Read more

What is the Microsoft Intermediate Language (MSIL) code in .Net?

What is Microsoft Inter-mediate Language (MSIL) code in .Net?

There are numerous dialects utilized in .NET Framework. For every language, an alternate compiler is utilized for assembling the source codes. In .NET Framework’s every compiler changes over source code into a transitional code is known as Microsoft Inter-intervene language code. The upside of MSIL code is: it tends to be devoured by some other … Read more

What are the roles of CLR (Common Language Runtime) in .NET Framework?

What are the roles of CLR (Common Language Runtime) in .NET Framework?

CLR (Common Language Runtime) is an essential segment of .NET Framework. It gives a situation to run .NET applications on the focused machine. CLR gives condition to every single .NET language compilers for changing over source code into a typical language known as IL or MSIL or CIL. CLR gives different administrations to execute forms, … Read more