C# Class TagTool.IO.EndianWriter

Inheritance: System.IO.BinaryWriter
Mostrar archivo Open project: TheGuardians/TagTool

Public Methods

Method Description
EndianWriter ( Stream stream, EndianFormat format ) : System.IO
Write ( double value ) : void
Write ( double value, EndianFormat format ) : void
Write ( float value ) : void
Write ( float value, EndianFormat format ) : void
Write ( int value ) : void
Write ( int value, EndianFormat format ) : void
Write ( long value ) : void
Write ( long value, EndianFormat format ) : void
Write ( short value ) : void
Write ( short value, EndianFormat format ) : void
Write ( uint value ) : void
Write ( uint value, EndianFormat format ) : void
Write ( ulong value ) : void
Write ( ulong value, EndianFormat format ) : void
Write ( ushort value ) : void
Write ( ushort value, EndianFormat format ) : void
WriteBlock ( byte data ) : void
WriteBlock ( byte data, int offset, int length ) : void

Method Details

EndianWriter() public method

public EndianWriter ( Stream stream, EndianFormat format ) : System.IO
stream System.IO.Stream
format EndianFormat
return System.IO

Write() public method

public Write ( double value ) : void
value double
return void

Write() public method

public Write ( double value, EndianFormat format ) : void
value double
format EndianFormat
return void

Write() public method

public Write ( float value ) : void
value float
return void

Write() public method

public Write ( float value, EndianFormat format ) : void
value float
format EndianFormat
return void

Write() public method

public Write ( int value ) : void
value int
return void

Write() public method

public Write ( int value, EndianFormat format ) : void
value int
format EndianFormat
return void

Write() public method

public Write ( long value ) : void
value long
return void

Write() public method

public Write ( long value, EndianFormat format ) : void
value long
format EndianFormat
return void

Write() public method

public Write ( short value ) : void
value short
return void

Write() public method

public Write ( short value, EndianFormat format ) : void
value short
format EndianFormat
return void

Write() public method

public Write ( uint value ) : void
value uint
return void

Write() public method

public Write ( uint value, EndianFormat format ) : void
value uint
format EndianFormat
return void

Write() public method

public Write ( ulong value ) : void
value ulong
return void

Write() public method

public Write ( ulong value, EndianFormat format ) : void
value ulong
format EndianFormat
return void

Write() public method

public Write ( ushort value ) : void
value ushort
return void

Write() public method

public Write ( ushort value, EndianFormat format ) : void
value ushort
format EndianFormat
return void

WriteBlock() public method

public WriteBlock ( byte data ) : void
data byte
return void

WriteBlock() public method

public WriteBlock ( byte data, int offset, int length ) : void
data byte
offset int
length int
return void