C# 클래스 fNbt.NbtBinaryReader

BinaryReader wrapper that takes care of reading primitives from an NBT stream, while taking care of endianness, string encoding, and skipping.
상속: System.IO.BinaryReader
파일 보기 프로젝트 열기: fragmer/fNbt 1 사용 예제들

Private Properties

프로퍼티 타입 설명
FillBuffer void
Swap int
Swap long
Swap short

공개 메소드들

메소드 설명
NbtBinaryReader ( [ input, bool bigEndian ) : System
ReadDouble ( ) : double
ReadInt16 ( ) : short
ReadInt32 ( ) : int
ReadInt64 ( ) : long
ReadSingle ( ) : float
ReadString ( ) : string
ReadTagType ( ) : NbtTagType
Skip ( int bytesToSkip ) : void
SkipString ( ) : void

비공개 메소드들

메소드 설명
FillBuffer ( int numBytes ) : void
Swap ( int v ) : int
Swap ( long v ) : long
Swap ( short v ) : short

메소드 상세

NbtBinaryReader() 공개 메소드

public NbtBinaryReader ( [ input, bool bigEndian ) : System
input [
bigEndian bool
리턴 System

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

ReadTagType() 공개 메소드

public ReadTagType ( ) : NbtTagType
리턴 NbtTagType

Skip() 공개 메소드

public Skip ( int bytesToSkip ) : void
bytesToSkip int
리턴 void

SkipString() 공개 메소드

public SkipString ( ) : void
리턴 void