IRemainingArguments Interface

Represents the remaining arguments.
public interface IRemainingArguments

Properties

abstract ILookup<string, string> Parsed
Gets the parsed remaining arguments.
abstract IReadOnlyList<string> Raw
Gets the raw, non-parsed remaining arguments. This is normally everything after the `--` delimiter.

Extension Methods

T And<IRemainingArguments>(Action<IRemainingArguments>)
Performs the specified action on the given object and then returns the object. Useful for fluent testing patterns where additional assertions or operations are chained together in a readable manner.