Difference between revisions of "API:SeekOrigin"
From Kerbal Space Program Wiki
m |
|||
Line 1: | Line 1: | ||
{{Namespace:KSP.IO}} | {{Namespace:KSP.IO}} | ||
− | + | ||
− | + | The '''SeekOrigin''' enum is a replacement for its System.IO equivalent. It's used to determine from where one wishes to seek in a file stream. | |
− | + | ||
− | |||
{{EnumStart}} | {{EnumStart}} | ||
{{EnumValue | {{EnumValue |
Revision as of 18:55, 13 October 2015
KSP.IO Namespace
BinaryReader ·
BinaryWriter ·
File ·
FileInfo ·
FileStream ·
IOException ·
IOTools ·
IOUtils ·
MemoryStream ·
PluginConfigNode ·
PluginConfiguration ·
TextReader ·
TextWriter
The SeekOrigin enum is a replacement for its System.IO equivalent. It's used to determine from where one wishes to seek in a file stream.
Begin Seek from the beginning of the stream.
Current Seek from the current position in the stream.
End Seek from the end of the stream.