C# 클래스 Glare.Framework.ExtensionMethods

This provides extension methods.
파일 보기 프로젝트 열기: Burton-Radons/Alexandria

공개 메소드들

메소드 설명
AddRange ( this list, BinaryReader reader, int byteCount ) : void

Read some bytes into the list.

AddRange ( this list, Stream stream, int byteCount ) : void

Read some bytes into the list.

InsertRange ( this list, int index, BinaryReader reader, int byteCount ) : void

Read some bytes into the list.

InsertRange ( this list, int index, Stream stream, int byteCount ) : void

Read some bytes into the list.

메소드 상세

AddRange() 공개 정적인 메소드

Read some bytes into the list.
public static AddRange ( this list, BinaryReader reader, int byteCount ) : void
list this
reader System.IO.BinaryReader
byteCount int
리턴 void

AddRange() 공개 정적인 메소드

Read some bytes into the list.
public static AddRange ( this list, Stream stream, int byteCount ) : void
list this
stream Stream
byteCount int
리턴 void

InsertRange() 공개 정적인 메소드

Read some bytes into the list.
public static InsertRange ( this list, int index, BinaryReader reader, int byteCount ) : void
list this
index int
reader System.IO.BinaryReader
byteCount int
리턴 void

InsertRange() 공개 정적인 메소드

Read some bytes into the list.
public static InsertRange ( this list, int index, Stream stream, int byteCount ) : void
list this
index int
stream Stream
byteCount int
리턴 void