ACAT.Extensions.Default.FunctionalAgents.FileBrowserAgent.FileBrowserAgent.startWithNotepad C# (CSharp) Method

startWithNotepad() private method

Launches the specified file in notepad
private startWithNotepad ( String fileName ) : void
fileName String name of the file
return void
        private void startWithNotepad(String fileName)
        {
            var startInfo = new ProcessStartInfo { FileName = "notepad.exe", Arguments = fileName };
            var process = Process.Start(startInfo);
            waitForProcessAndActivate(process);
        }