Appearance
__ public enum SeekPosition { | Begin(Int64) | Current(Int64) | End(Int64) }
功能:该枚举类型表示光标在文件中的位置。
__ Begin (Int64)
功能:表示从起点开始移动。
__ Current (Int64)
功能:表示从当前位置开始移动。
__ End (Int64)
功能:表示从末尾开始移动。