コード例 #1
0
 /// <summary>
 /// Deserializes an shapes index from the given stream.
 /// </summary>
 public static ShapesArray CreateFrom(Stream stream, bool copy, bool hasElevation = false)
 {
     return(ShapesArray.CreateFrom(stream, copy, out var _, hasElevation));
 }
コード例 #2
0
        /// <summary>
        /// Deserializes an shapes index from the given stream.
        /// </summary>
        public static ShapesArray CreateFrom(Stream stream, bool copy)
        {
            long size;

            return(ShapesArray.CreateFrom(stream, copy, out size));
        }