C# 클래스 PRI.ProductivityExtensions.TextReaderExtensions.TextReaderable

Class that contains extension methods that extend TextReader
파일 보기 프로젝트 열기: peteraritchie/ProductivityExtensions

공개 메소드들

메소드 설명
Read ( this textreader, Char buffer ) : Int32

Extends Read so that buffer offset of 0 and call to Array.Length are not needed. textreader.Read(buffer);

ReadBlock ( this textreader, Char buffer ) : Int32

Extends ReadBlock so that buffer offset of 0 and call to Array.Length are not needed. textreader.ReadBlock(buffer);

메소드 상세

Read() 공개 정적인 메소드

Extends Read so that buffer offset of 0 and call to Array.Length are not needed. textreader.Read(buffer);
public static Read ( this textreader, Char buffer ) : Int32
textreader this
buffer Char
리턴 System.Int32

ReadBlock() 공개 정적인 메소드

Extends ReadBlock so that buffer offset of 0 and call to Array.Length are not needed. textreader.ReadBlock(buffer);
public static ReadBlock ( this textreader, Char buffer ) : Int32
textreader this
buffer Char
리턴 System.Int32