Comp170 Standard C# Header
Complete these comments at the start of every program file
Size 1 kB - File type text/x-csharpFile contents
/*Comp 170 Standard C# Header *Assignment name: <enter number and name of assignment here> *LUC id and Name <your LUC email id here> - <your full name here> *Date <date you began working on this program> * *<Description of the program - use as many lines as needed> * *Questions: <questions or comments for the grader (problems, changes, etc.) - say NONE if none> * * */ using System; namespace StandardHeader { class MainClass { public static void Main (string[] args) { Console.WriteLine ("Hello World!"); } } }