-1
運行此代碼時,我得到一個異常C#程序異常
String cmd = "-redir:sim applu.res -max:inst {0} -pred {1} -assoc {2} -lvpt {3} -speedup {4} applu.ss<applu.in";
for (int i = 0; i < parameters.Length; i++) {
cmd = cmd.Replace ("{" + i + "}", parameters [i]);
}
Console.WriteLine (cmd);
System.Diagnostics.Process process = new System.Diagnostics.Process();
process.StartInfo.FileName = "./sim-spred";
process.StartInfo.Arguments = cmd;
process.StartInfo.UseShellExecute = false;
process.StartInfo.RedirectStandardOutput = true;
process.Start();
Console.WriteLine(process.StandardOutput.ReadToEnd());
源位於debug文件夾
' 「我得到一個異常」'是*信息不足*。請複製並粘貼確切的例外文本。另外,如果你在調試器中運行它,它可能會指向你的確切線。也包括這些信息。 –
你介意發佈異常嗎? – Dunken
Wheres例外? – Idris