Enumerable.prototype.lines(): Lines<T>
Convert byte stream to text lines.
Important: This is a property, not a method. Use .lines not .lines().
Returns an Enumerable<string> where each item is a line of text.
Lines are split on \n or \r\n. Line endings are not included in the output.
Note that this should probably only be used with small data. Consider chunkedLines to improve performance with larger data.
Lines<T>