Please login to save your progress.
Hello World
Exercise: Avoid the Using Directive
Goal
Fix the following code so the output of the program reads "Hello World", without adding a using directive.
1
public class Program
2
{
3
public static void Main()
4
{
5
Console.WriteLine("Hello World");
6
}
7
}
Page 7 of 13