[Mono-bugs] [Bug 32471][Maj] New - .Net behaviour <> mono

bugzilla-daemon@rocky.ximian.com bugzilla-daemon@rocky.ximian.com
17 Oct 2002 21:31:22 -0000


Please do not reply to this email- if you want to comment on the bug, go to the
URL shown below and enter your comments there.

Changed by mono.vanberne@xs4all.nl.

http://bugzilla.ximian.com/show_bug.cgi?id=32471

--- shadow/32471	Thu Oct 17 17:31:22 2002
+++ shadow/32471.tmp.31354	Thu Oct 17 17:31:22 2002
@@ -0,0 +1,30 @@
+Bug#: 32471
+Product: Mono/Class Libraries
+Version: unspecified
+OS: GNU/Linux [Other]
+OS Details: 
+Status: NEW   
+Resolution: 
+Severity: 
+Priority: Major
+Component: System
+AssignedTo: mono-bugs@ximian.com                            
+ReportedBy: mono.vanberne@xs4all.nl               
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL: 
+Cc: 
+Summary: .Net behaviour <> mono
+
+Description of Problem:
+Mono's FileStream behaviour for Seek() differs from Microsoft's .NET when 
+using a offset to the origin. 
+
+Using MS I've to use a negative offset to seek 128 bytes before the EOF; 
+FileStream.Seek(-128, SeekOrigin.End). Using Mono however I've to use a 
+positive offset; FileStream.Seek(128, SeekOrigin.End); 
+
+Additional Information:
+I've tested this on several machines with both the original .NET Framework 
+SDK as well as Service Pack 2. I've tested this with mono Release 0.16 
+both on Linux and Windows.