Search This Blog

Monday 10 September 2012

How To Declare Keyword as Variable ?




Contact :  https://www.facebook.com/rajvishwakarma15

How To Declare Keyword as Variable ?



A Simple Example:
using System;
class A
{
    public static void Main(string[] a)
   {
         int @for=20;
         Console.WriteLine(@for);
Console.Readkey();
   }
}

Similarly This You can declare any Keyword As Variable.
Thanks.