I have created a very simple C# console application which gives me the following MSIL code when compiled... The next screenshot has almost the same code but with some special difference. Can you tell me what could have caused it and is it good or bad?
Read More...
Background: Let's write the following code in C# (cons.cs) using C = System.Console; public class X { int i, j; public X() { } public X(int i)
Read More...
Background: Let's create a setter in C# with a simple getter and setter... using System; class Employee { private string name; public string Name { get
Read More...
Background: If you have multiple Main methods in your C# console application, you will be able to compile the application only if you provide the /main:ClassName on your command prompt. For ex. create a file called SampleMSIL.cs and paste the following...
Read More...