public static class StreamReaderExtensions { public static IEnumerable ReadLines(this StreamReader reader) { string? line; while ((line = reader.ReadLine()) is not null) { yield return line; } } }