Happy April Fools Day
As a computer geek, I'd like to wish everyone a happy April Fools day the geekiest way I know how.
using System;
using System.Runtime.InteropServices;
class AprilFoolsDay
{
[DllImport("user32.dll", ExactSpelling = true, SetLastError = true)]
internal static extern bool ExitWindowsEx(int flag, int reason);
static void Main(string[] args)
{
Console.WriteLine("Happy April Fools Day");
ExitWindowsEx(0x00000001, 0);
}
}




