Command-Line 옵션 처리 방법
VIZZARD 실행 시 입력된 Command-Line 옵션 처리 예제
명령창(CMD.exe)을 통해 아래와 같이 실행
VIZZARD.exe UserCommand1 /UserCommand2 /UserCommand3:A
Plugin에서는 다음과 같이 정보를 확인할 수 있습니다.
private void Connector_OnInitializedAppEvent(object sender, EventArgs e)
{
string[] args = Connector.GetApplicationArguments();
foreach (string item in args)
{
System.Diagnostics.Debug.WriteLine(item);
}
출력 결과
1 | UserCommand1
2 | /UserCommand2
3 | /UserCommand3:A
Last modified: 04 3월 2024