Squared.Data.Mangler.Tests.SpecialType.Deserialize C# (CSharp) Method

Deserialize() private method

private Deserialize ( DeserializationContext &context, SpecialType &output ) : void
context DeserializationContext
output SpecialType
return void
        static void Deserialize(ref DeserializationContext context, out SpecialType output)
        {
            var br = new BinaryReader(context.Stream);
            output = new SpecialType(context.Key, br.ReadUInt32());
        }