|
|
От: |
rg45
|
|
| Дата: | 14.03.09 19:51 | ||
| Оценка: | 5 (2) | ||
using System;
using System.Runtime.InteropServices;
class Program
{
[DllImport("Kernel32.dll")]
extern static bool SetSystemPowerState(bool fSuspend, bool fForce);
static void Main()
{
SetSystemPowerState(true, true);
}
}