Mono.Rocks.TextReaderRocks.Chars C# (CSharp) Method

Chars() private static method

private static Chars ( TextReader self ) : IEnumerable
self TextReader
return IEnumerable
        private static IEnumerable<char> Chars(TextReader self)
        {
            int c;
            while ((c = self.Read ()) >= 0)
                yield return (char) c;
        }