Axiom.Graphics.BufferStream.Seek C# (CSharp) Method

Seek() public method

Moves the "cursor" position within the buffer.
public Seek ( long offset ) : long
offset long Offset (in bytes) to move from the current position.
return long
		public long Seek( long offset )
		{
			return Seek( offset, SeekOrigin.Current );
		}

Same methods

BufferStream::Seek ( long offset, SeekOrigin origin ) : long