当前位置 : 主页 > 网络编程 > net编程 >

c# runas

来源:互联网 收集:自由互联 发布时间:2023-10-08
Process Proc = new Process(); ProcessStartInfo ProcStartInfo = new ProcessStartInfo(textBox_Command.Text); ProcStartInfo.UseShellExecute = true; ProcStartInfo.Verb = "runas"; Proc.StartInfo = ProcStartInfo; Proc.Start();


Process Proc = new Process();

ProcessStartInfo ProcStartInfo = new ProcessStartInfo(textBox_Command.Text);

ProcStartInfo.UseShellExecute = true;

ProcStartInfo.Verb = "runas";

Proc.StartInfo = ProcStartInfo;

Proc.Start();


上一篇:c# Font字体
下一篇:没有了
网友评论