我试图在列表中只获得奇怪的参数。这是我的一段代码
static void Main(string[] args)
{
var swictches = args.ToList().Select((x, index) => (index % 2) == 1);
var ss = swictches[0];
string test = doc.ReadAllPages();
Console.WriteLine(test.Substring(0, 1000));
Console.Read();
}
在参数列表中,它具有开关和参数。我正在尝试获取所有开关。当我运行此代码时,switch 变量如下所示:
false
true
false
而不是这样
-i
-awq
-l