Method | Description | |
---|---|---|
ReadInt16BigEndian ( this reader ) : |
Reads a 16-bit integer from the stream that has been encoded as big endian.
|
|
ReadInt32BigEndian ( this reader ) : |
Reads a 32-bit integer from the stream that has been encoded as big endian.
|
|
ReadPackedDecimalIbm ( this reader, byte storageLength, byte scale ) : decimal |
Reads a pack decimal from the stream
|
|
ReadSingleIbm ( this reader ) : float |
Reads a single precision 32-bit floating point number from the stream that has been encoded in IBM System/360 Floating Point format
|
|
ReadStringEbcdic ( this reader, int count ) : string |
Reads the requested number of 8-bit EBCDIC encoded characters from the stream and converts them to a Unicode string.
|
Method | Description | |
---|---|---|
ReadBytes ( |
public static ReadInt16BigEndian ( this reader ) : |
||
reader | this | |
return |
public static ReadInt32BigEndian ( this reader ) : |
||
reader | this | |
return |
public static ReadPackedDecimalIbm ( this reader, byte storageLength, byte scale ) : decimal | ||
reader | this | The reader from which the bytes will be read |
storageLength | byte | The total storage length of the packed decimal |
scale | byte | The scale of the decimal (number of number after the .) |
return | decimal |
public static ReadSingleIbm ( this reader ) : float | ||
reader | this | |
return | float |
public static ReadStringEbcdic ( this reader, int count ) : string | ||
reader | this | |
count | int | The number of bytes to read |
return | string |