UnpackerReadNullableDouble Method |
Reads next nullable
Double value from current stream.
Namespace: MsgPackAssembly: MsgPack (in MsgPack.dll) Version: 0.6.0
Syntax [CLSCompliantAttribute(false)]
public virtual bool ReadNullableDouble(
out Nullable<double> result
)
<CLSCompliantAttribute(false)>
Public Overridable Function ReadNullableDouble (
<OutAttribute> ByRef result As Nullable(Of Double)
) As Boolean
public:
[CLSCompliantAttribute(false)]
virtual bool ReadNullableDouble(
[OutAttribute] Nullable<double>% result
)
[<CLSCompliantAttribute(false)>]
abstract ReadNullableDouble :
result : Nullable<float> byref -> bool
[<CLSCompliantAttribute(false)>]
override ReadNullableDouble :
result : Nullable<float> byref -> bool
Parameters
- result
- Type: SystemNullableDouble
[Missing <param name="result"/> documentation for "M:MsgPack.Unpacker.ReadNullableDouble(System.Nullable{System.Double}@)"]
Return Value
Type:
Boolean
The nullable
Double value read from current data source successfully.
Exceptions See Also