Method GetDouble
GetDouble()
Returns the double at the current position and increases the position by 8.
The 8 bytes starting from the current position are composed into a double according to the current byte order and returned.
Declaration
public abstract double GetDouble()
Returns
Type | Description |
---|---|
System.Double | the double at the current position. |
Exceptions
Type | Condition |
---|---|
BufferUnderflowException | if the position is greater than |
GetDouble(Int32)
Returns the
The 8 bytes starting at the specified index are composed into a
Declaration
public abstract double GetDouble(int index)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | index | the index, must not be negative and equal or less than |
Returns
Type | Description |
---|---|
System.Double | the |