Click or drag to resize

WritableUtilityCreateDeserializerT Method

Uses reflection to create a function that deserializes an object from a BinaryReader; this function can be used in the object's Read(BinaryReader) implementation.

Namespace:  Ookii.Jumbo.IO
Assembly:  Ookii.Jumbo (in Ookii.Jumbo.dll) Version: 2.0.0
Syntax
public static Action<T, BinaryReader> CreateDeserializer<T>()

Type Parameters

T
The type of the object to deserialize.

Return Value

Type: ActionT, BinaryReader
A ActionT1, T2 delegate to a method that deserializes the object.
Remarks
See Also