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=77190 --- shadow/77190 2006-01-09 10:22:49.000000000 -0500 +++ shadow/77190.tmp.27853 2006-01-09 10:22:49.000000000 -0500 @@ -0,0 +1,57 @@ +Bug#: 77190 +Product: Mono: Runtime +Version: 1.1 +OS: +OS Details: Ubuntu Breezy +Status: NEW +Resolution: +Severity: +Priority: Wishlist +Component: misc +AssignedTo: [EMAIL PROTECTED] +ReportedBy: [EMAIL PROTECTED] +QAContact: [EMAIL PROTECTED] +TargetMilestone: --- +URL: +Cc: +Summary: NullReferenceException when concatenate strings + +Please fill in this template when reporting a bug, unless you know what you +are doing. +Description of Problem: + +The following test case crash: + +class test +{ + static void Main () + { + string tmp; + int count = 0; + + tmp = "abcdefghijkl" + count.ToString (); + tmp = "abcdefghijkl" + count.ToString (); + tmp = "abcdefghijkl" + count.ToString (); + tmp = "abcdefghijkl" + count.ToString (); + <repeated 20000 times> + } +} + +Steps to reproduce the problem: +1. mcs test.cs +2. mono ./test.exe +3. + +Actual Results: + +Unhandled Exception: System.NullReferenceException: Object reference not +set to an instance of an object + +Expected Results: + + +How often does this happen? + +Allways + +Additional Information: _______________________________________________ mono-bugs maillist - [email protected] http://lists.ximian.com/mailman/listinfo/mono-bugs
