■ 엣지 브라우저(Edge)를 실행하는 방법을 보여준다.
▶ Program.cs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 |
namespace TestProject; /// <summary> /// 프로그램 /// </summary> class Program { //////////////////////////////////////////////////////////////////////////////////////////////////// Method ////////////////////////////////////////////////////////////////////////////////////////// Static //////////////////////////////////////////////////////////////////////////////// Private #region 엣지 실행하기 - ExecuteEdge(url, newWindow) /// <summary> /// 엣지 실행하기 /// </summary> /// <param name="url">URL</param> /// <param name="newWindow">신규 윈도우 여부</param> private static void ExecuteEdge(string url, bool newWindow = true) { string argumentList = $"/C start msedge {url}{(newWindow ? " --new-window" : "")}"; System.Diagnostics.Process.Start("cmd", argumentList); } #endregion #region 프로그램 시작하기 - Main() /// <summary> /// 프로그램 시작하기 /// </summary> private static void Main() { ExecuteEdge("https://icodebroker.tistory.com"); Thread.Sleep(300); ExecuteEdge("https://klumina.tistory.com", false); } #endregion } |