Hello, I’m working on this task:
Make the program compile (work). It should output “Everything looks so familiar…” to the screen.
Here is my code:
class MyNamespace
{
namespace NamespacesAreCities
{
static void Main(string[] args)
{
Console.WriteLine("Everything looks so familiar...");
}
}
}
Can anyone please help me to solve it?