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...
I am sure many of you will be aware of this F7 and F8 keyboard shortcut while working with the plain old command prompt. For those who are not... try this out! F7 - Basically, this would just list the history of commands you have already typed in. You
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...