1 instantiation of Argument
Microsoft.ML.Core (1)
CommandLine\CmdParser.cs (1)
509
var arg = new
Argument
(isDefault ? -1 : args.Count, name, nicks, defaults, attr, field);
22 references to Argument
Microsoft.ML.Core (22)
CommandLine\CmdParser.cs (22)
466
var args = new List<
Argument
>();
467
var map = new Dictionary<string,
Argument
>();
468
Argument
def = null;
509
var
arg = new Argument(isDefault ? -1 : args.Count, name, nicks, defaults, attr, field);
570
Argument
arg;
707
private bool TryGetOptionValue(ArgumentInfo info, string str, out
Argument
arg, out string option, out string tag, out string value)
763
var
arg = info.Args[i];
783
foreach (
Argument
arg in info.Args)
816
foreach (
Argument
arg in info.Args)
830
foreach (
Argument
arg in info.Args)
957
foreach (
Argument
arg in info.Args)
969
private ArgumentHelpStrings GetHelpStrings(IHostEnvironment env,
Argument
arg)
1198
Argument
argument;
1214
/// This class exposes those parts of this wrapped <see cref="
Argument
"/> appropriate
1217
private readonly
Argument
_arg;
1245
private Arg(
Argument
arg)
1333
public readonly
Argument
ArgDef;
1334
public readonly
Argument
[] Args;
1335
public readonly Dictionary<string,
Argument
> Map;
1339
public ArgumentInfo(Type type,
Argument
argDef,
Argument
[] args, Dictionary<string,
Argument
> map)