Google.Protobuf.UninterpretedOption.Deserialize C# (CSharp) Method

Deserialize() public static method

Helper: put the buffer into a MemoryStream before deserializing
public static Deserialize ( byte buffer, Google instance ) : Google.Protobuf.UninterpretedOption
buffer byte
instance Google
return Google.Protobuf.UninterpretedOption
        public static Google.Protobuf.UninterpretedOption Deserialize(byte[] buffer, Google.Protobuf.UninterpretedOption instance)
        {
            using (var ms = new MemoryStream(buffer))
                Deserialize(ms, instance);
            return instance;
        }

Same methods

UninterpretedOption::Deserialize ( Stream stream, Google instance ) : Google.Protobuf.UninterpretedOption
UninterpretedOption::Deserialize ( Stream stream ) : UninterpretedOption
UninterpretedOption::Deserialize ( byte buffer ) : UninterpretedOption