Rahul Soni's blog

Never assume the obvious is true!

January, 2008

Posts
  • Rahul Soni's blog

    MSIL Trivia - 2 (Setters in C#)

    • 2 Comments
    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      ...
  • Rahul Soni's blog

    The F7 and F8 key while you are using command prompt.

    • 2 Comments
    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...
  • Rahul Soni's blog

    MSIL Trivia - 1

    • 1 Comments
    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...
Page 1 of 1 (3 items)