在我的项目中,我希望获得用户对浏览器类型及其搜索内容的输入。
实施例: UserInput = browserChrome -Google --Random StackOverFlow
有没有办法对此进行编码? 如果有怎么样?我是c#
的初学者答案 0 :(得分:0)
以下内容可以帮助您入门
using System;
public class CommandLine
{
public static void Main(string[] args)
{
for(int i = 0; i < args.Length; i++)
{
if( args[i] == "-Google" )
{
// do something
}
}
}
}