Run ❯
Get your
own
website
×
Change Orientation
using System; namespace MyApplication { class Program { static void MyMethod() { Console.WriteLine("I just got executed!"); } static void Main(string[] args) { MyMethod(); } } }
I just got executed!