C# 클래스 UnitWrappers.System.IO.BinaryReaderWrap

상속: IBinaryReader
파일 보기 프로젝트 열기: OpenSharp/UnitWrappers 1 사용 예제들

공개 메소드들

메소드 설명
BinaryReaderWrap ( BinaryReader reader ) : System

Initializes a new instance of the T:UnitWrappers.System.IO.BinaryReaderWrap class on the specified path.

BinaryReaderWrap ( Stream input ) : System

Initializes a new instance of the BinaryReader class based on the supplied stream and using UTF8Encoding.

BinaryReaderWrap ( Stream stream, Encoding encoding ) : System

Initializes a new instance of the BinaryReader class based on the supplied stream and a specific character encoding.

Close ( ) : void
Dispose ( ) : void
PeekChar ( ) : int
Read ( ) : int
Read ( byte buffer, int index, int count ) : int
Read ( char buffer, int index, int count ) : int
ReadBoolean ( ) : bool
ReadByte ( ) : byte
ReadBytes ( int count ) : byte[]
ReadChar ( ) : char
ReadChars ( int count ) : char[]
ReadDecimal ( ) : decimal
ReadDouble ( ) : double
ReadInt16 ( ) : short
ReadInt32 ( ) : int
ReadInt64 ( ) : long
ReadSingle ( ) : float
ReadString ( ) : string

비공개 메소드들

메소드 설명
ReadSByte ( ) : sbyte
ReadUInt16 ( ) : ushort
ReadUInt32 ( ) : uint
ReadUInt64 ( ) : ulong

메소드 상세

BinaryReaderWrap() 공개 메소드

Initializes a new instance of the T:UnitWrappers.System.IO.BinaryReaderWrap class on the specified path.
public BinaryReaderWrap ( BinaryReader reader ) : System
reader System.IO.BinaryReader The object.
리턴 System

BinaryReaderWrap() 공개 메소드

Initializes a new instance of the BinaryReader class based on the supplied stream and using UTF8Encoding.
public BinaryReaderWrap ( Stream input ) : System
input Stream A object.
리턴 System

BinaryReaderWrap() 공개 메소드

Initializes a new instance of the BinaryReader class based on the supplied stream and a specific character encoding.
public BinaryReaderWrap ( Stream stream, Encoding encoding ) : System
stream Stream The supplied stream.
encoding System.Text.Encoding The character encoding.
리턴 System

Close() 공개 메소드

public Close ( ) : void
리턴 void

Dispose() 공개 메소드

public Dispose ( ) : void
리턴 void

PeekChar() 공개 메소드

public PeekChar ( ) : int
리턴 int

Read() 공개 메소드

public Read ( ) : int
리턴 int

Read() 공개 메소드

public Read ( byte buffer, int index, int count ) : int
buffer byte
index int
count int
리턴 int

Read() 공개 메소드

public Read ( char buffer, int index, int count ) : int
buffer char
index int
count int
리턴 int

ReadBoolean() 공개 메소드

public ReadBoolean ( ) : bool
리턴 bool

ReadByte() 공개 메소드

public ReadByte ( ) : byte
리턴 byte

ReadBytes() 공개 메소드

public ReadBytes ( int count ) : byte[]
count int
리턴 byte[]

ReadChar() 공개 메소드

public ReadChar ( ) : char
리턴 char

ReadChars() 공개 메소드

public ReadChars ( int count ) : char[]
count int
리턴 char[]

ReadDecimal() 공개 메소드

public ReadDecimal ( ) : decimal
리턴 decimal

ReadDouble() 공개 메소드

public ReadDouble ( ) : double
리턴 double

ReadInt16() 공개 메소드

public ReadInt16 ( ) : short
리턴 short

ReadInt32() 공개 메소드

public ReadInt32 ( ) : int
리턴 int

ReadInt64() 공개 메소드

public ReadInt64 ( ) : long
리턴 long

ReadSingle() 공개 메소드

public ReadSingle ( ) : float
리턴 float

ReadString() 공개 메소드

public ReadString ( ) : string
리턴 string