1 instantiation of Arg
Microsoft.ML.Core (1)
CommandLine\CmdParser.cs (1)
1258
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)
436
return ArgInfo.
Arg
.GetInfo(type, defaults);
1185
public readonly
Arg
[] Args;
1188
private ArgInfo(ArgumentInfo info,
Arg
[] args)
1196
public bool TryGetArg(string name, out
Arg
arg)
1258
Arg
[] args = Utils.BuildArray(argumentInfo.Args.Length, i => new Arg(argumentInfo.Args[i]));
1259
Array.Sort(args, 0, args.Length, Comparer<
Arg
>.Create((x, y) => x.SortOrder.CompareTo(y.SortOrder)));