摘要:
遇到DEBUG成功的版本RELEASE 就有问题,以下是问题的分析总结 1. 变量未初始化。 下面的程序在debug中运行的很好。 thing * search(thing * something) BOOL found; for(int i = 0; i < whatever.GetSize(); 阅读全文
摘要:
1、执行单条cmd命令public static string ExecuteCmd(string command) { Process p = new Process(); p.StartInfo.FileName = "cmd.exe"; p.StartInfo.UseShellExecute 阅读全文