comparison IO/BinaryReaderBigEndian.cs @ 32:267cd5ce66ff

Add "Position" property to Big-Endian binary reader no-open-ticket
author IBBoard <dev@ibboard.co.uk>
date Sun, 17 May 2009 18:54:11 +0000
parents 23fd4247fc1c
children
comparison
equal deleted inserted replaced
31:7a3749a2d8e6 32:267cd5ce66ff
131 131
132 public bool EndOfStream 132 public bool EndOfStream
133 { 133 {
134 get { return stream.Length - 1 == stream.Position; } 134 get { return stream.Length - 1 == stream.Position; }
135 } 135 }
136
137 public long Position
138 {
139 get { return stream.Position; }
140 }
136 } 141 }
137 } 142 }