- reader
- A System.IO.TextReader to extract arguments from.
A IEnumerable<string> which will provide arguments extracted from reader.
Arguments are extracted from reader by splitting on newlines and spaces but maintaining the contents of single-quoted and double-quoted strings. Thus, A B will be split as the separate strings "A", "B", while "A B" will be returned as-is.