namespace West.TelegramBot.CodeWatcher; public static class StringExtension { // https://stackoverflow.com/a/23408020 public static IEnumerable SplitToLines(this string input) { using var reader = new StringReader(input); while (reader.ReadLine() is { } line) { yield return line; } } }