Sep 5, 2011

Init

This is Initial post....

public class Hello
{
	public void SayHello()
	{
		Console.WriteLine("Hello World");
	}
}
void Main()
{
	Hello obj = new Hello();
	obj.SayHello();
}

No comments:

Post a Comment

Be the first to comment on this post.