部落客本身收藏C#書本的範例目錄
2014年12月6日 星期六
2014年6月28日 星期六
2013年12月21日 星期六
2013年12月7日 星期六
2013年11月30日 星期六
2013年11月1日 星期五
2013年10月26日 星期六
2013年10月20日 星期日
2013年10月19日 星期六
2013年9月22日 星期日
2013年9月7日 星期六
2013年9月6日 星期五
2013年8月31日 星期六
[C#基礎]-C#命令PC「關機 登出 休眠 重新開機」的語法收藏
[C#基礎]-C#命令PC「關機 登出 休眠 重新開機」的語法收藏
剛才爬文,發現有善心人事整理出C#命令PC「關機 登出 休眠 重新開機」的語法,馬上秉持C/P達人的精神趕緊收藏,有興趣的同好,歡迎來C/P一下 哈哈 ^ ^。
拷貝來源:http://xtony77.blogspot.tw/2011/07/c_6237.html
//關機
System.Diagnostics.Process.Start("C:\\WINDOWS\\system32\\shutdown.exe", "-f -s -t 0");
//登出
System.Diagnostics.Process.Start("C:\\WINDOWS\\system32\\shutdown.exe", "-l");
//休眠
System.Diagnostics.Process.Start("C:\\WINDOWS\\system32\\rundll32.exe","powrprof.dll,SetSuspendState");
//重新開機
System.Diagnostics.Process.Start("C:\\WINDOWS\\system32\\shutdown.exe", "-f -r -t 0");
2013年8月28日 星期三
[C#基礎]-C#實做九九乘法表
[C#基礎]-C#實做九九乘法表
本篇要分享C#實做C#實做九九乘法表範例,有興趣的同好,歡迎來一下哈哈 ^ ^。
using System; |
2013年8月27日 星期二
訂閱:
文章 (Atom)