var startInfo=new ProcessStartInfo(java, serverMemoryArguments + " -jar \"" + latestBukkit.info.Name + "\"")
{ WorkingDirectory = latestBukkit.info.DirectoryName ,
RedirectStandardError=true,
// RedirectStandardOutput=true,
UseShellExecute = false,
//CreateNoWindow=true,
ErrorDialog = true,
ErrorDialogParentHandle=this.Handle,
};
我想分叉输出,而不仅仅是重定向...我想听,并让它显示在普通窗口中。
可以吗?