1 write to RemainingArguments
dotnet-getdocument (1)
src\Shared\CommandLineUtils\CommandLine\CommandLineApplication.cs (1)
42
RemainingArguments
= 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)
590
command.
RemainingArguments
.Add(args[index]);
596
command.
RemainingArguments
.AddRange(new ArraySegment<string>(args, index, args.Length - index));