C#에서 응용 프로그램 다시 시작
Muhammad Maisam Abbas
2024년2월16일
이 자습서에서는 C#에서 응용 프로그램을 다시 시작하는 방법에 대해 설명합니다.
C#에서Application.Restart()
함수를 사용하여 애플리케이션 다시 시작
C#에서 애플리케이션을 다시 시작하는 가장 쉬운 방법은Application.Restart()
함수를 사용하는 것입니다. Application.Restart()
함수는 C#에서 애플리케이션을 다시 시작하는 데 사용됩니다. 다음 코드 예제는Application.Restart()
함수를 사용하여 C#에서 애플리케이션을 다시 시작하는 방법을 보여줍니다.
using System.Windows.Forms;
namespace messagbox {
static class Program {
static void Main() {
Application.EnableVisualStyles();
DialogResult dr = MessageBox.Show("Are you happy now?", "Mood Test", MessageBoxButtons.YesNo);
switch (dr) {
case DialogResult.Yes:
MessageBox.Show("Ok, Bye");
break;
case DialogResult.No:
Application.Restart();
break;
}
}
}
}
출력:
위의 코드에서 우리는 C#의Application.Restart()
함수를 사용하여 메시지 상자에서 Yes
를 선택할 때까지 계속 다시 시작되는 애플리케이션을 만들었습니다.
Maisam is a highly skilled and motivated Data Scientist. He has over 4 years of experience with Python programming language. He loves solving complex problems and sharing his results on the internet.
LinkedIn