Hello, I’m working on this task:
Make the program compile (work). It should output “I am the very main method.” to the screen.
Here is my code:
namespace MyNamespace
{
class VeryMainMethod
{
static void TheVeryMainMethod(string[] args)
{;
Console.WriteLine("I am the very main method.");
};
static void EmptyMethod()
{;
};
}
}
Can anyone please help me to solve it?