Skip to content

Latest commit

 

History

History
18 lines (13 loc) · 697 Bytes

File metadata and controls

18 lines (13 loc) · 697 Bytes

BinarySerialization.Deserialize<TValue> method

namespace: Serenity.Data   assemblySerenity.Net.Core

A helper method to deserialize objects with BinaryWriter. Creates a memory stream and a BinaryReader on it, and invokes the callback specified.

public static TValue Deserialize<TValue>(byte[] input, Func<BinaryReader, TValue> deserialize)
parameter description
input Input array
deserialize Deserialization delegate

See Also