Comments
Last updated:
8/22/2020
⁃
Difficulty:
Easy
Create a C# program that does nothing. All you have to do is write a //TODO
comment in the program's Main and add a multi-line comment with your name and the creation date in the first line of the program.
Input
Output
Solution
/*
Exercises C#
Date: 30/03/2020
*/
public class Comments
{
public static void Main(string[] args)
{
//TODO
}
}