[Mono-bugs] [Bug 36382][Maj] New - NullReference exception thrown not correct by System.Diagnostics.StackTrace class
bugzilla-daemon@rocky.ximian.com
bugzilla-daemon@rocky.ximian.com
Tue, 7 Jan 2003 08:48:59 -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 gkodinov@openlinksw.co.uk.
http://bugzilla.ximian.com/show_bug.cgi?id=36382
--- shadow/36382 Tue Jan 7 08:48:59 2003
+++ shadow/36382.tmp.3555 Tue Jan 7 08:48:59 2003
@@ -0,0 +1,34 @@
+Bug#: 36382
+Product: Mono/Runtime
+Version: unspecified
+OS: Red Hat 8.0
+OS Details:
+Status: NEW
+Resolution:
+Severity:
+Priority: Major
+Component: misc
+AssignedTo: mono-bugs@ximian.com
+ReportedBy: gkodinov@openlinksw.co.uk
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL:
+Cc: tim.haynes@openlinksw.co.uk,ztashev@openlinksw.co.uk
+Summary: NullReference exception thrown not correct by System.Diagnostics.StackTrace class
+
+Please fill in this template when reporting a bug, unless you know what
+you are doing.
+Description of Problem:
+System.Diagnostics.StackTrace().ToString() throws NullReferenceException
+on Linux !
+
+Try to compile and run the following on Linux :
+
+using System;
+public class test_it
+{
+ public static void Main (String [] args)
+ {
+ Console.WriteLine (new System.Diagnostics.StackTrace());
+ }
+}