文章列表
ArrayList 与 string[] 的转换
Method1:
Java代码
public string[] ToArray
ArrayList list = new ArrayList();
list.Add( "aaa" );
list.Add( "bbb" );
//转换成数组
string[] arrString = (string[])list.ToArray( typeof( string ) ) ;
public string[] ToA ...
先说下系统自带的关机指令,很多人应该已经知道了,就是shutdown,不带参数执行将会列出它的参数,常用参数为: /s 关闭计算机 /r 关闭并重启动计算机 /f 强制正在运行的应用程序关闭而不事先警告用户 /t xxx 设置关闭前的超时为 xxx 秒。 有效范围是 0-600,默认为 30
另外,在倒计时过程输入shutdown /a可以取消关机或重启,不加/t参数执行则倒计时30秒。 一般需要立即关机可以这样写:(将/s参数换成/r参数就是立即重启) shutdown /f /s /t 0 shutdown支持对远程计算机进行 ...