[Mono-bugs] [Bug 75860][Wis] New - Exceptions are broken under Windows

bugzilla-daemon at bugzilla.ximian.com bugzilla-daemon at bugzilla.ximian.com
Sat Aug 20 07:20:48 EDT 2005


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 b_gs at hotmail.com.

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

--- shadow/75860	2005-08-20 07:20:48.000000000 -0400
+++ shadow/75860.tmp.27401	2005-08-20 07:20:48.000000000 -0400
@@ -0,0 +1,37 @@
+Bug#: 75860
+Product: Mono: Runtime
+Version: 1.1
+OS: 
+OS Details: win xp sp2
+Status: NEW   
+Resolution: 
+Severity: 
+Priority: Wishlist
+Component: misc
+AssignedTo: mono-bugs at ximian.com                            
+ReportedBy: b_gs at hotmail.com               
+QAContact: mono-bugs at ximian.com
+TargetMilestone: ---
+URL: 
+Cc: 
+Summary: Exceptions are broken under Windows
+
+The program below works under Linux, but not Windows.  I'm using Mono
+1.1.8.3 standard binaries.  Nothing is output under Windows.
+
+-----
+
+using System;
+
+namespace MonoTest {
+    internal class RunMonoTest {
+        [STAThread]
+        private static void Main(string[] args) {
+            try {
+                throw new NotImplementedException("testing mono");
+            } catch (Exception ex) {
+                Console.Write(ex);
+            }
+        }
+    }
+}


More information about the mono-bugs mailing list