public static Motorboat DeserializeLength(Stream stream, int length)
        {
            Motorboat motorboat = Pool.Get <Motorboat>();

            Motorboat.DeserializeLength(stream, length, motorboat, false);
            return(motorboat);
        }
 public virtual void ReadFromStream(Stream stream, int size, bool isDelta = false)
 {
     Motorboat.DeserializeLength(stream, size, this, isDelta);
 }