在visual studio中使用CommandLineArgs
本文关键字:CommandLineArgs visual studio | 更新日期: 2023-09-27 18:02:42
所以我试图使用CommandLineArgs。Count和CommandLineArgs。ToArray如果在互联网上搜索,他们都说你使用My.Application.CommandLineArgs,但这对我不起作用。
这是我得到
的错误错误1名称"My"在当前不存在c:' users ' nigel ' documents ' visual Studio2013'Projects'SOF_SCRIPT'SOF_SCRIPT'GUI.cs 119 17 SOF_SCRIPT
if (My.Application.CommandLineArgs.Count > 0)
{
string[] strArray = My.Application.CommandLineArgs.ToArray<string>();
s = strArray[0];
if ((strArray.Length == 3) | (strArray.Length == 4))
{
}
}
Use Environment.GetCommandLineArgs():
返回一个字符串数组,其中包含当前进程的命令行参数。
它们也可以作为应用程序入口点static void Main(string[] args)
的参数使用。