Squared.Data.Mangler.Tests.SpecialType.Deserialize C# (CSharp) 메소드

Deserialize() 개인적인 메소드

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