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