Exemplo n.º 1
0
        public static Serializable tryCreate(Stream stream)
        {
            var tag = stream.tryReadTag(true);

            if(tag == null)
                return null;

            return _create(stream, tag.Value);
        }