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