What is concept of Boxing and Unboxing? By: Thivan Mydeen 19 March 2016 Boxing permits any value type to be implicitly converted to type object or to any interface type implemented by value type. Boxing is a process in which object instances are created and copy values in to that instance. Read More
What are Value types and Reference types ? By: Thivan Mydeen 19 March 2016 Value types directly contain their data which are either allocated on the stack or allocated in-line in a structure. Read More
What are different types of JIT ? By: Thivan Mydeen 19 March 2016 JIT compiler is a part of the runtime execution environment. In Microsoft .NET there are three types of JIT compilers: Read More