代码
static void Main(string[] args)
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(
false);
if (args.Length!=0)
{
Application.Run(
new F_WebIE(args[0]));
}
else
{
Application.Run(
new F_WebIE(null));
}
}

 

注意:不能把 参数 string[] args 改为 string arg 参数必须要用字符串数组

相关文章:

  • 2021-08-06
  • 2022-01-23
  • 2022-01-22
  • 2021-10-11
  • 2022-02-07
  • 2021-08-29
猜你喜欢
  • 2022-02-10
  • 2021-09-14
  • 2022-12-23
  • 2021-04-08
  • 2022-12-23
  • 2021-10-21
  • 2022-01-06
相关资源
相似解决方案