예제 #1
0
파일: FileOption.cs 프로젝트: rho24/Jarvis
 public void Execute()
 {
     var executer = new ProcessStarter(FullPath);
     executer.Execute();
 }
예제 #2
0
            public void Execute()
            {
                var dir = Path.GetDirectoryName(_option.FullPath);

                var executer = new ProcessStarter(dir);
                executer.Execute();
            }
예제 #3
0
파일: GmailOption.cs 프로젝트: rho24/Jarvis
 public void Execute()
 {
     var executer = new ProcessStarter("http://gmail.com");
     executer.Execute();
 }
예제 #4
0
 public void Execute()
 {
     var executer = new ProcessStarter(_option.FullPath, true);
     executer.Execute();
 }