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