Friday, March 15, 2013

hello world in C#

Most everyone starts with hello world in programmig. Even seasoned developers write hello world apps in order to test if the simplist solution will run.
in c# we would write:
public static class MyClass
{
         public static void main()
         {
                  System.IO.Console.WriteLine("Hello World");
         }
}

1 comment:

  1. Easy way for learning programming
    http://dotprogramming.blogspot.in

    ReplyDelete