您可以使用」<>「輸入,表示沒有標誌與輸入關聯。由於這些選項是從左到右讀取的,因此您可以在遇到開始標誌時設置'currentParameter'標誌,並假定任何後續沒有標誌的輸入都是列表的一部分。下面是一個例子,我們可以指定一個List作爲輸入文件,而一個Dictionary(參數)是一個鍵值對列表。其他變化當然也可以使用。
OptionSet options = new OptionSet()
{
{"f|file", "a list of files" , v => {
currentParameter = "f";
}},
{"p", @"Parameter values to use for variable resolution in the xml - use the form 'Name=Value'. a ':' or ';' may be used in place of the equals sign", v => {
currentParameter = "p";
}},
{ "<>", v => {
switch(currentParameter) {
case "p":
string[] items = v.Split(new[]{'=', ':', ';'}, 2);
Parameters.Add(items[0], items[1]);
break;
case "f":
Files.Add(Path.Combine(Environment.CurrentDirectory, v));
break;
}
}}
};
options.Parse(args);