Deserialize a value.

Namespace:  Bespoke.Common.Osc
Assembly:  Bespoke.Common.Osc (in Bespoke.Common.Osc.dll) Version: 4.3.0.0 (4.3.0.0)

Syntax

C#
public static T ValueFromByteArray<T>(
	byte[] data,
	ref int start
)
Visual Basic (Declaration)
Public Shared Function ValueFromByteArray(Of T) ( _
	data As Byte(), _
	ByRef start As Integer _
) As T
Visual C++
public:
generic<typename T>
static T ValueFromByteArray(
	array<unsigned char>^ data, 
	int% start
)

Parameters

data
Type: array< System..::.Byte >[]()[]
The serialized data source.
start
Type: System..::.Int32 %
The starting index into the serialized data stream.

Type Parameters

T
The value's data type.

Return Value

The newly deserialized value.

See Also