private void launchNotepad()
{
ProcessStartInfo startInfo = new ProcessStartInfo();
startInfo.FileName = "Notepad.exe";
startInfo.Arguments = Path.Combine(Directory.GetCurrentDirectory(),"currencies.txt");
Process process = Process.Start(startInfo);
process.EnableRaisingEvents = true;
}
|