コード例 #1
0
ファイル: Omssa.cs プロジェクト: B-Rich/Compass
 public void StartSearch(ArgumentLine argumentFile)
 {
     NewProcess();
     process.StartInfo.Arguments = argumentFile.ToString();
     process.Exited += Exited;
     process.ErrorDataReceived += UpdateStatus;
     process.Disposed += new EventHandler(process_Disposed);
     process.Start();
     process.BeginErrorReadLine();
     process.BeginOutputReadLine();
 }
コード例 #2
0
ファイル: ArgumentLine.cs プロジェクト: B-Rich/Compass
 public ArgumentLine(ArgumentLine arg)
 {
     Arguments = new Dictionary<string, string>(arg.Arguments);
     RemoveDefaults = arg.RemoveDefaults;
 }