C# 클래스 OpenRA.StreamExts

파일 보기 프로젝트 열기: pchote/OpenRA

공개 메소드들

메소드 설명
Peek ( this s ) : int
ReadASCII ( this s, int length ) : string
ReadASCIIZ ( this s ) : string
ReadAllBytes ( this s ) : byte[]
ReadAllLines ( this s ) : IEnumerable
ReadAllText ( this s ) : string
ReadBytes ( this s, int count ) : byte[]
ReadBytes ( this s, byte buffer, int offset, int count ) : void
ReadDouble ( this s ) : double
ReadFloat ( this s ) : float
ReadInt16 ( this s ) : short
ReadInt32 ( this s ) : int
ReadString ( this s, Encoding encoding, int maxLength ) : string
ReadUInt16 ( this s ) : ushort
ReadUInt32 ( this s ) : uint
ReadUInt8 ( this s ) : byte
Write ( this s, byte data ) : void
Write ( this s, int value ) : void
WriteString ( this s, Encoding encoding, string text ) : int

메소드 상세

Peek() 공개 정적인 메소드

public static Peek ( this s ) : int
s this
리턴 int

ReadASCII() 공개 정적인 메소드

public static ReadASCII ( this s, int length ) : string
s this
length int
리턴 string

ReadASCIIZ() 공개 정적인 메소드

public static ReadASCIIZ ( this s ) : string
s this
리턴 string

ReadAllBytes() 공개 정적인 메소드

public static ReadAllBytes ( this s ) : byte[]
s this
리턴 byte[]

ReadAllLines() 공개 정적인 메소드

public static ReadAllLines ( this s ) : IEnumerable
s this
리턴 IEnumerable

ReadAllText() 공개 정적인 메소드

public static ReadAllText ( this s ) : string
s this
리턴 string

ReadBytes() 공개 정적인 메소드

public static ReadBytes ( this s, int count ) : byte[]
s this
count int
리턴 byte[]

ReadBytes() 공개 정적인 메소드

public static ReadBytes ( this s, byte buffer, int offset, int count ) : void
s this
buffer byte
offset int
count int
리턴 void

ReadDouble() 공개 정적인 메소드

public static ReadDouble ( this s ) : double
s this
리턴 double

ReadFloat() 공개 정적인 메소드

public static ReadFloat ( this s ) : float
s this
리턴 float

ReadInt16() 공개 정적인 메소드

public static ReadInt16 ( this s ) : short
s this
리턴 short

ReadInt32() 공개 정적인 메소드

public static ReadInt32 ( this s ) : int
s this
리턴 int

ReadString() 공개 정적인 메소드

public static ReadString ( this s, Encoding encoding, int maxLength ) : string
s this
encoding System.Text.Encoding
maxLength int
리턴 string

ReadUInt16() 공개 정적인 메소드

public static ReadUInt16 ( this s ) : ushort
s this
리턴 ushort

ReadUInt32() 공개 정적인 메소드

public static ReadUInt32 ( this s ) : uint
s this
리턴 uint

ReadUInt8() 공개 정적인 메소드

public static ReadUInt8 ( this s ) : byte
s this
리턴 byte

Write() 공개 정적인 메소드

public static Write ( this s, byte data ) : void
s this
data byte
리턴 void

Write() 공개 정적인 메소드

public static Write ( this s, int value ) : void
s this
value int
리턴 void

WriteString() 공개 정적인 메소드

public static WriteString ( this s, Encoding encoding, string text ) : int
s this
encoding System.Text.Encoding
text string
리턴 int