Blog
How to shut down your PC using C#
This blog will show you that how to shut down the computer using asp.net 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);
}