https://bugzilla.novell.com/show_bug.cgi?id=425512
User [email protected] added comment https://bugzilla.novell.com/show_bug.cgi?id=425512#c6 Miguel de Icaza <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] --- Comment #6 from Miguel de Icaza <[email protected]> 2009-02-12 15:06:21 MST --- Robert, would you mind commiting this change? I think it is OK to break the apps (if any) that depended on this ugly hack. As for detection, probably the code should be a variation from comment #2: FieldInfo remoteStackTraceString = typeof(Exception).GetField("_remoteStackTraceString", BindingFlags.Instance | BindingFlags.NonPublic); // MS.Net if (remoteStackTraceString == null) remoteStackTraceString = typeof(Exception).GetField("remote_stack_trace", BindingFlags.Instance | BindingFlags.NonPublic); // Mono pre-2.6 Basically try the first, then fallback to the setting we had in Mono pre-2.6 Miguel. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug. You are the assignee for the bug. _______________________________________________ mono-bugs maillist - [email protected] http://lists.ximian.com/mailman/listinfo/mono-bugs
