Method | Description | |
---|---|---|
BigEndianBinaryWriter ( ) : System |
Initializes a new instance of the BigEndianBinaryWriter class.
|
|
BigEndianBinaryWriter ( Stream output ) : System |
Initializes a new instance of BigEndianBinaryWriter class based on the supplied stream and using UTF-8 as the encoding for strings.
|
|
BigEndianBinaryWriter ( Stream output, |
Initializes a new instance of BigEndianBinaryWriter class based on the supplied stream and a specific character encoding.
|
|
WriteDoubleBE ( double value ) : void |
Reads a 8-byte signed integer using the big-endian layout from the current stream and advances the current position of the stream by two bytes.
|
|
WriteIntBE ( int value ) : void |
Reads a 4-byte signed integer using the big-endian layout from the current stream and advances the current position of the stream by two bytes.
|
public BigEndianBinaryWriter ( Stream output ) : System | ||
output | Stream | The supplied stream. |
return | System |
public BigEndianBinaryWriter ( Stream output, |
||
output | Stream | The supplied stream. |
encoding | The character encoding. | |
return | System |
public WriteDoubleBE ( double value ) : void | ||
value | double | The four-byte signed integer to write. |
return | void |
public WriteIntBE ( int value ) : void | ||
value | int | The four-byte signed integer to write. |
return | void |