16 Dec 2012

How to write C# Program

Today we will learn how to write C# Program

/* prog for simple namespace and comment */

using System;

class sample
{
    public static void Main()
    {
        Console.WriteLine("this is my first program ");

    }
}

No comments:

Post a Comment