1 instantiation of Arg
Microsoft.ML.Core (1)
CommandLine\CmdParser.cs (1)
1259
Arg[] args = Utils.BuildArray(argumentInfo.Args.Length, i => new
Arg
(argumentInfo.Args[i]));
6 references to Arg
Microsoft.ML.Core (6)
CommandLine\CmdParser.cs (6)
437
return ArgInfo.
Arg
.GetInfo(type, defaults);
1186
public readonly
Arg
[] Args;
1189
private ArgInfo(ArgumentInfo info,
Arg
[] args)
1197
public bool TryGetArg(string name, out
Arg
arg)
1259
Arg
[] args = Utils.BuildArray(argumentInfo.Args.Length, i => new Arg(argumentInfo.Args[i]));
1260
Array.Sort(args, 0, args.Length, Comparer<
Arg
>.Create((x, y) => x.SortOrder.CompareTo(y.SortOrder)));