zoukankan      html  css  js  c++  java
  • Runtime Error! R6025-pure virtual function call

     //创建一个进程
     Process p = new Process();
     p.StartInfo.FileName = "cmd.exe";
     p.StartInfo.UseShellExecute = false;//是否使用操作系统shell启动
     p.StartInfo.RedirectStandardInput = true;//接受来自调用程序的输入信息
     p.StartInfo.RedirectStandardOutput = true;//由调用程序获取输出信息
     p.StartInfo.RedirectStandardError = true;//重定向标准错误输出
     p.StartInfo.CreateNoWindow = true;//不显示程序窗口
     p.Start();//启动程序
    
     //向cmd窗口发送输入信息
     p.StandardInput.WriteLine("cd %windir%\system32");
     p.StandardInput.WriteLine("Regsvr32 Msxml3.dll");
    
    
     p.StandardInput.AutoFlush = true;
    
     //获取cmd窗口的输出信息
     string output = p.StandardOutput.ReadToEnd();
     //等待程序执行完退出进程
     p.WaitForExit();
     p.Close();
  • 相关阅读:
    codeforces
    codeforces
    HDU
    poj
    poj
    HDU Problem
    HDU 3555 Bomb 【数位dp】
    POJ 1942 Paths on a Grid【组合数学】
    杭电 Problem 2089 不要62 【数位dp】
    codeforces 486c-Palindrome Transformation【贪心】
  • 原文地址:https://www.cnblogs.com/pilgrim/p/12978558.html
Copyright © 2011-2022 走看看