[Mono-bugs] [Bug 29599][Wis] Changed - Type.BaseType does not return null on object.

bugzilla-daemon@rocky.ximian.com bugzilla-daemon@rocky.ximian.com
29 Aug 2002 14:49:59 -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 gonzalo@ximian.com.

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

--- shadow/29599	Wed Aug 28 18:40:27 2002
+++ shadow/29599.tmp.28427	Thu Aug 29 10:49:59 2002
@@ -1,14 +1,14 @@
 Bug#: 29599
 Product: Mono/Runtime
 Version: unspecified
-OS: 
+OS: unknown
 OS Details: 
-Status: NEW   
-Resolution: 
-Severity: 
+Status: RESOLVED   
+Resolution: NOTABUG
+Severity: Unknown
 Priority: Wishlist
 Component: misc
 AssignedTo: mono-bugs@ximian.com                            
 ReportedBy: tum_public@veridicus.com               
 QAContact: mono-bugs@ximian.com
 TargetMilestone: ---
@@ -33,6 +33,23 @@
 
 
 How often does this happen? 
 
 
 Additional Information:
+
+------- Additional Comments From gonzalo@ximian.com  2002-08-29 10:49 -------
+I tried this program and run in both, linux and windows:
+
+using System;
+class C
+{
+        static void Main ()
+        {
+                Type t = typeof (object);
+                Console.WriteLine ("{0}", t.BaseType == null);
+        }
+}
+
+The output is the same:
+True
+