반응형 코드상 프로그램실행1 코드상 프로그램 실행(Process) 코드상에서 다른 프로그램(word, excel...) 실행 시킬 때 사용한다. 엑셀같은 겨우는 엑셀 실행 파일이 아닌 xxx.xlsx만 주어도 실행이 된다. Arguments는 주지 않아도 된다. using System.Diagnostics; Process process = new Process(); process.StartInfo.FileName = Path.Combine("D:\down\App.exe"); process.StartInfo.Arguments = "argument; process.Start(); 엑셀 파일 등 실행시 Process.Start("D:\down\App.xlsx"); 2016. 1. 26. 이전 1 다음 반응형