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 [EMAIL PROTECTED] http://bugzilla.ximian.com/show_bug.cgi?id=81623 --- shadow/81623 2007-05-14 16:25:45.000000000 -0400 +++ shadow/81623.tmp.7198 2007-05-14 16:26:29.000000000 -0400 @@ -37,6 +37,34 @@ I'll change the code to not trigger the compilation but instead wait till we reach Main() by normal flow of execution - don't know yet how exactly this will be archived. ------- Additional Comments From [EMAIL PROTECTED] 2007-05-14 16:25 ------- *** Bug 81615 has been marked as a duplicate of this bug. *** + +------- Additional Comments From [EMAIL PROTECTED] 2007-05-14 16:26 ------- +A simple test case is this: + +====== +using System; +using System.Collections; +using System.Collections.Specialized; +using System.Configuration; + +class X +{ + static X () + { + Console.WriteLine ("TEST!"); + NameValueCollection config = +ConfigurationSettings.AppSettings; + Console.WriteLine ("TEST #2"); + } + + static void Main () + { + Console.WriteLine ("Hello World!"); + } +} +===== + +This will crash when run inside mdb. _______________________________________________ mono-bugs maillist - [email protected] http://lists.ximian.com/mailman/listinfo/mono-bugs
