using System;
public class Program
{
public static void Main()
// Calling the method we just created and named MyMethod
MyMethod();
}
// This is our MyMethod()
public static void MyMethod()
Console.WriteLine("My Newly Created Method at Coding Dojo!");