changeset 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 7a3749a2d8e6
children 8971a1c48dbf
files IO/BinaryReaderBigEndian.cs
diffstat 1 files changed, 5 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/IO/BinaryReaderBigEndian.cs	Sun May 17 16:09:22 2009 +0000
+++ b/IO/BinaryReaderBigEndian.cs	Sun May 17 18:54:11 2009 +0000
@@ -133,5 +133,10 @@
 		{
 			get { return stream.Length - 1 == stream.Position; }
 		}
+
+		public long Position
+		{
+			get { return stream.Position; }
+		}
 	}
 }