/*Program Name:HelloWorld, Creator:Michael Program Use:This program pretty much just writes out whatever you want. */ using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace HelloWorld { class HelloWorld { static void Main(string[] args) { Console.Out.Write("I am a C# Program"); Console.In.ReadLine(); //This command (//) is to write comments for other coders to read } } }