Exemplo n.º 1
0
        /// <inheritdoc/>
        public override void SetLength(long value)
        {
            if (endPosition != -1)
            {
                throw new InvalidOperationException("Can't resize VirtualFileStream if endPosition is not -1.");
            }

            InternalStream.SetLength(value);
        }
Exemplo n.º 2
0
 public override void SetLength(long value)
 {
     InternalStream.SetLength(value);
 }