c# start process

C#
using System.Diagnostics;

static void Main() {
	Process.Start("notepad"); // open notepad
}
Source

Also in C#: