Hello World C# with Example



Hello World C# with Example

 using System;

namespace CSharpFundamentals{
	class HelloCSharp{							// Type Declaration
		private static void Main(string[] args)
		{
			Console.WriteLine("Hello C#.");
		}
	}
} 

0 Comment's

Comment Form