UnpackingUnpackSingle Method (Byte, Int32) |
Unpacks
Single value from the specified byte array.
Namespace: MsgPackAssembly: MsgPack (in MsgPack.dll) Version: 0.6.0
Syntax public static UnpackingResult<float> UnpackSingle(
byte[] source,
int offset
)
Public Shared Function UnpackSingle (
source As Byte(),
offset As Integer
) As UnpackingResult(Of Single)
public:
static UnpackingResult<float> UnpackSingle(
array<unsigned char>^ source,
int offset
)
static member UnpackSingle :
source : byte[] *
offset : int -> UnpackingResult<float32>
Parameters
- source
- Type: SystemByte
The byte array which contains Message Pack binary stream. - offset
- Type: SystemInt32
The offset to be unpacking start with.
Return Value
Type:
UnpackingResultSingle
The
UnpackingResultT of
Single which contains unpacked
Single value and processed bytes count.
Exceptions Remarks See Also