1 write to RemainingArguments
dotnet-getdocument (1)
src\Shared\CommandLineUtils\CommandLine\CommandLineApplication.cs (1)
42RemainingArguments = new List<string>();
3 references to RemainingArguments
dotnet-getdocument (3)
Commands\InvokeCommand.cs (1)
32_args = command.RemainingArguments;
src\Shared\CommandLineUtils\CommandLine\CommandLineApplication.cs (2)
590command.RemainingArguments.Add(args[index]); 596command.RemainingArguments.AddRange(new ArraySegment<string>(args, index, args.Length - index));