How to shut down your PC using C#

Step-1: Add a namespace

using System.Diagnostics;

Step-2: Write few lines of code on button click:

private void button1_Click(object sender, EventArgs e)
{
    ProcessStartInfo startinfo = new ProcessStartInfo("shutdown.exe", "-s");
    Process.Start(startinfo);
}