1 instantiation of Argument
Microsoft.ML.Core (1)
CommandLine\CmdParser.cs (1)
510
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)
467
var args = new List<
Argument
>();
468
var map = new Dictionary<string,
Argument
>();
469
Argument
def = null;
510
var
arg = new Argument(isDefault ? -1 : args.Count, name, nicks, defaults, attr, field);
571
Argument
arg;
708
private bool TryGetOptionValue(ArgumentInfo info, string str, out
Argument
arg, out string option, out string tag, out string value)
764
var
arg = info.Args[i];
784
foreach (
Argument
arg in info.Args)
817
foreach (
Argument
arg in info.Args)
831
foreach (
Argument
arg in info.Args)
958
foreach (
Argument
arg in info.Args)
970
private ArgumentHelpStrings GetHelpStrings(IHostEnvironment env,
Argument
arg)
1199
Argument
argument;
1215
/// This class exposes those parts of this wrapped <see cref="
Argument
"/> appropriate
1218
private readonly
Argument
_arg;
1246
private Arg(
Argument
arg)
1334
public readonly
Argument
ArgDef;
1335
public readonly
Argument
[] Args;
1336
public readonly Dictionary<string,
Argument
> Map;
1340
public ArgumentInfo(Type type,
Argument
argDef,
Argument
[] args, Dictionary<string,
Argument
> map)