C# Class Glare.Framework.ExtensionMethods

This provides extension methods.
ファイルを表示 Open project: Burton-Radons/Alexandria

Public Methods

Method Description
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.

Method Details

AddRange() public static method

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

AddRange() public static method

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

InsertRange() public static method

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
return void

InsertRange() public static method

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
return void