本文整理汇总了C#中System.Diagnostics.ProcessStartInfo.UseShellExecute属性的典型用法代码示例。如果您正苦于以下问题:C# ProcessStartInfo.UseShellExecute属性的具体用法?C# ProcessStartInfo.UseShellExecute怎么用?C# ProcessStartInfo.UseShellExecute使用的例子?那么恭喜您, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在类System.Diagnostics.ProcessStartInfo
的用法示例。
在下文中一共展示了ProcessStartInfo.UseShellExecute属性的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的C#代码示例。
示例1: using
// Run "csc.exe /r:System.dll /out:sample.exe stdstr.cs". UseShellExecute is false because we're specifying
// an executable directly and in this case depending on it being in a PATH folder. By setting
// RedirectStandardOutput to true, the output of csc.exe is directed to the Process.StandardOutput stream
// which is then displayed in this console window directly.
using (Process compiler = new Process())
{
compiler.StartInfo.FileName = "csc.exe";
compiler.StartInfo.Arguments = "/r:System.dll /out:sample.exe stdstr.cs";
compiler.StartInfo.UseShellExecute = false;
compiler.StartInfo.RedirectStandardOutput = true;
compiler.Start();
Console.WriteLine(compiler.StandardOutput.ReadToEnd());
compiler.WaitForExit();
}
开发者ID:.NET开发者,项目名称:System.Diagnostics,代码行数:16,代码来源:ProcessStartInfo.UseShellExecute示例2: Main
//引入命名空间
using System;
using System.Diagnostics;
public class RedirectingProcessOutput
{
public static void Main()
{
Process p = new Process();
p.StartInfo.FileName = "cmd.exe";
p.StartInfo.Arguments = "/c dir *.cs";
p.StartInfo.UseShellExecute = false;
p.StartInfo.RedirectStandardOutput = true;
p.Start();
string output = p.StandardOutput.ReadToEnd();
Console.WriteLine("Output:");
Console.WriteLine(output);
}
}
开发者ID:C#程序员,项目名称:System.Diagnostics,代码行数:21,代码来源:ProcessStartInfo.UseShellExecute本文标签属性:
示例:示例是什么意思
代码:代码编程
ProcessStartInfo:ProcessStartInfo
UseShellExecute:UseShellExecute