Menu
×
×
Correct!
Exercise:Create a method named
static void MyMethod()
{
Console.WriteLine("I just got executed!");
}
static void Main(string[] args)
{
MyMethod();
}
Not CorrectClick here to try again. Correct!Next ❯static void() { Console.WriteLine("I just got executed!"); } static void Main(string[] args) { } |