C# Class SharpOS.Kernel.FileSystem.BinaryFormat

Mostra file Open project: sharpos/SharpOS Class Usage Examples

Public Methods

Method Description
BinaryFormat ( byte data ) : System
BinaryFormat ( uint length ) : System
Fill ( uint offset, byte value, uint length ) : void
GetByte ( uint offset ) : byte
GetBytes ( uint offset, uint length ) : byte[]
GetChar ( uint offset ) : char
GetChars ( uint offset, uint length ) : char[]
GetInt ( uint offset ) : int
GetString ( uint offset, uint length ) : string
GetUInt ( uint offset ) : uint
GetUShort ( uint offset ) : ushort
SetByte ( uint offset, byte value ) : void
SetBytes ( uint offset, byte value ) : void
SetBytes ( uint offset, byte value, uint start, uint length ) : void
SetChar ( uint offset, char value ) : void
SetChars ( uint offset, char value ) : void
SetInt ( uint offset, int value ) : void
SetString ( uint offset, string value ) : void
SetString ( uint offset, string value, uint length ) : void
SetUInt ( uint offset, uint value ) : void
SetUShort ( uint offset, ushort value ) : void
this ( int index ) : byte

Method Details

BinaryFormat() public method

public BinaryFormat ( byte data ) : System
data byte
return System

BinaryFormat() public method

public BinaryFormat ( uint length ) : System
length uint
return System

Fill() public method

public Fill ( uint offset, byte value, uint length ) : void
offset uint
value byte
length uint
return void

GetByte() public method

public GetByte ( uint offset ) : byte
offset uint
return byte

GetBytes() public method

public GetBytes ( uint offset, uint length ) : byte[]
offset uint
length uint
return byte[]

GetChar() public method

public GetChar ( uint offset ) : char
offset uint
return char

GetChars() public method

public GetChars ( uint offset, uint length ) : char[]
offset uint
length uint
return char[]

GetInt() public method

public GetInt ( uint offset ) : int
offset uint
return int

GetString() public method

public GetString ( uint offset, uint length ) : string
offset uint
length uint
return string

GetUInt() public method

public GetUInt ( uint offset ) : uint
offset uint
return uint

GetUShort() public method

public GetUShort ( uint offset ) : ushort
offset uint
return ushort

SetByte() public method

public SetByte ( uint offset, byte value ) : void
offset uint
value byte
return void

SetBytes() public method

public SetBytes ( uint offset, byte value ) : void
offset uint
value byte
return void

SetBytes() public method

public SetBytes ( uint offset, byte value, uint start, uint length ) : void
offset uint
value byte
start uint
length uint
return void

SetChar() public method

public SetChar ( uint offset, char value ) : void
offset uint
value char
return void

SetChars() public method

public SetChars ( uint offset, char value ) : void
offset uint
value char
return void

SetInt() public method

public SetInt ( uint offset, int value ) : void
offset uint
value int
return void

SetString() public method

public SetString ( uint offset, string value ) : void
offset uint
value string
return void

SetString() public method

public SetString ( uint offset, string value, uint length ) : void
offset uint
value string
length uint
return void

SetUInt() public method

public SetUInt ( uint offset, uint value ) : void
offset uint
value uint
return void

SetUShort() public method

public SetUShort ( uint offset, ushort value ) : void
offset uint
value ushort
return void

this() public method

public this ( int index ) : byte
index int
return byte