What is IL/MSIL/CIL and JIT in .NET ?
IL is Intermediate Language IL is also known as MSIL (Microsoft Intermediate Language) or CIL (Common Intermediate Language) JIL – IL is converted into machine code by Just-In-Time (JIT) compiler
IL is Intermediate Language IL is also known as MSIL (Microsoft Intermediate Language) or CIL (Common Intermediate Language) JIL – IL is converted into machine code by Just-In-Time (JIT) compiler
Hi, Let’s see how encapsulation can be implemented using properties in C#.NET/ASP.NET. Let’s see the code first. using System; public class Student { private int stud_id = -1; public int ID { get { return stud_id; } set { stud_id = value; } } private string stud_name = string.Empty; public string Name { get {… Read More »
Hi, In order to sort elements in ArrayList using ASP.NET we can use the Sort() method. It will sort ArrayList Elements alphabetically. This will sort the ArrayList elements alphabetically. 🙂