[Mono-bugs] [Bug 39264][Nor] New - System.Environment.Version returns {0,0,-1,-1}

bugzilla-daemon@rocky.ximian.com bugzilla-daemon@rocky.ximian.com
Fri, 7 Mar 2003 04:33:06 -0500 (EST)


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 yannis.bres@sophia.inria.fr.

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

--- shadow/39264	Fri Mar  7 04:33:05 2003
+++ shadow/39264.tmp.5979	Fri Mar  7 04:33:05 2003
@@ -0,0 +1,47 @@
+Bug#: 39264
+Product: Mono/Class Libraries
+Version: unspecified
+OS: 
+OS Details: XP
+Status: NEW   
+Resolution: 
+Severity: Unknown
+Priority: Normal
+Component: System
+AssignedTo: mono-bugs@ximian.com                            
+ReportedBy: Yannis.BRES@sophia.inria.fr               
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL: 
+Cc: 
+Summary: System.Environment.Version returns {0,0,-1,-1}
+
+Description of Problem: System.Environment.Version returns {0,0,-1,-1}
+
+
+Steps to reproduce the problem:
+Compile and run the following program:
+using System;
+
+class System_Environment_Version
+{
+  public static void Main( String[]  args )
+  {
+    Console.Error.WriteLine( "VM version: {0}.{1}.{2}.{3}",
+                             Environment.Version.Major,
+                             Environment.Version.Minor,
+                             Environment.Version.Build,
+                             Environment.Version.Revision );
+  }
+}
+
+Actual Results:
+VM version: 0.0.-1.-1
+
+Expected Results:
+Something like: VM version: 0.22.0.0
+
+How often does this happen? 
+Always
+
+Additional Information: