FSO.Files.Utils.IoBuffer.SeekFromMark C# (CSharp) Метод

SeekFromMark() публичный Метод

Seeks in the current stream from the current mark plus the number of bytes.
public SeekFromMark ( long numBytes ) : void
numBytes long The number of bytes to add to the offset (mark).
Результат void
        public void SeekFromMark(long numBytes)
        {
            Reader.BaseStream.Seek(_Mark + numBytes, SeekOrigin.Begin);
        }