UnpackingUnpackSByte Method (Byte, Int32) |
Unpacks
SByte value from the specified byte array.
Namespace: MsgPackAssembly: MsgPack (in MsgPack.dll) Version: 0.6.0
Syntax [CLSCompliantAttribute(false)]
public static UnpackingResult<sbyte> UnpackSByte(
byte[] source,
int offset
)
<CLSCompliantAttribute(false)>
Public Shared Function UnpackSByte (
source As Byte(),
offset As Integer
) As UnpackingResult(Of SByte)
public:
[CLSCompliantAttribute(false)]
static UnpackingResult<signed char> UnpackSByte(
array<unsigned char>^ source,
int offset
)
[<CLSCompliantAttribute(false)>]
static member UnpackSByte :
source : byte[] *
offset : int -> UnpackingResult<sbyte>
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:
UnpackingResultSByte
The
UnpackingResultT of
SByte which contains unpacked
SByte value and processed bytes count.
Exceptions Remarks See Also