2013年1月17日 星期四

[C#]命令列參數 (Command Line Arguments)


1.取得參數
string[] args = Environment.GetCommandLineArgs();
for (int i = 0; i < args.Length; i++)
{
    MessageBox.Show(args[i]);
}
2.呼叫時帶入參數
Process explorer = new Process();
explorer.StartInfo.FileName = @"C:\Program Files\Internet Explorer\iexplore.exe";
//額外的參數;這邊給的是網址
explorer.StartInfo.Arguments = "http://yahoo.com.tw";
explorer.Start();

沒有留言:

張貼留言