Using Console.WriteLine command, write a program that outputs to the screen: “Enter the programming world!” Pay attention to upper and lower case letters in Console.WriteLine(…) Size matters!
You should also make sure that spelling of the text is exactly the same as it is in the task description.
Here is my code:
public static class HelloWorld
{
public static void Main()
{
Console.WriteLine()("Enter the programming world!);
}
}
Please check the format of the Console.WriteLine command. It should have only one opening and one closing parenthesis with a text surrounded by quotes. After the command, you should place the semicolon. Here is an example: