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