Hi,
I know how to deserialize a custom class from a Stream:
var serializer = MessagePackSerializer.Get();
var value = serializer.Unpack(stream);
Is it possible to deserialize a class the same way directly from the MessagePackObject and not from the stream?