C# Class PRI.ProductivityExtensions.BinaryReaderExtensions.BinaryReaderable

Class that contains extension methods that extend BinaryReader
显示文件 Open project: peteraritchie/ProductivityExtensions

Public Methods

Method Description
Read ( this binaryreader, Byte buffer ) : Int32

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

Read ( this binaryreader, Char buffer ) : Int32

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

Method Details

Read() public static method

Extends Read so that buffer offset of 0 and call to Array.Length are not needed. binaryreader.Read(buffer);
public static Read ( this binaryreader, Byte buffer ) : Int32
binaryreader this
buffer Byte
return System.Int32

Read() public static method

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