Stream.SeekFrom

Used with seek.

Values

ValueMeaning
Start

Seek from the start.

Current

Seek from the current position.

End

Seek from the end.

Implementation_Note: Some might think that when using End, that the amount to seek by means 'How many spaces to go backwards'.

This however, is not how I feel it should work. So if you want to go backwards from the end, just use a negative offset, like with the other options.

Meta