zoukankan      html  css  js  c++  java
  • c# 启动一个程序代码

                 //start the real updater
                System.Diagnostics.ProcessStartInfo psi = new System.Diagnostics.ProcessStartInfo();
                psi.FileName = sPath;//Application.StartupPath + "\\tsApp.exe";
                psi.UseShellExecute = true;
                psi.WorkingDirectory = Application.StartupPath;
                psi.Arguments = sArguments;

                System.Diagnostics.Process.Start(psi);
  • 相关阅读:
    git命令
    Linux基础知识手册
    Linux系统编程
    A
    Subsequences in Substrings Kattis
    G
    K
    K
    C
    E
  • 原文地址:https://www.cnblogs.com/xinlang/p/1654272.html
Copyright © 2011-2022 走看看