namespace AdventOfCode; public static partial class StringExtensions { public static IEnumerable ReadAllLines(this StringReader reader) { while (reader.ReadLine() is { } line) { yield return line; } } public static IEnumerable ReadAllLines(this string text) { return new StringReader(text).ReadAllLines(); } }