Beispiel #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);
        }
 public override void SetLength(long value)
 {
     InternalStream.SetLength(value);
 }