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=77490 --- shadow/77490 2006-02-07 08:03:44.000000000 -0500 +++ shadow/77490.tmp.26834 2006-07-15 17:07:48.000000000 -0400 @@ -5,18 +5,18 @@ OS Details: Linux Running on Power PC Status: NEW Resolution: Severity: Unknown Priority: Major Component: interop -AssignedTo: [EMAIL PROTECTED] +AssignedTo: [EMAIL PROTECTED] ReportedBy: [EMAIL PROTECTED] QAContact: [EMAIL PROTECTED] TargetMilestone: --- URL: -Summary: Jagged Array(type double) initialization fails +Summary: [PPC] Jagged Array(type double) initialization fails Please fill in this template when reporting a bug, unless you know what you are doing. Description of Problem: @@ -43,6 +43,29 @@ Additional Information: ------- Additional Comments From [EMAIL PROTECTED] 2006-02-07 08:03 ------- This works on x86 so it might be a PPC only bug. + +------- Additional Comments From [EMAIL PROTECTED] 2006-07-15 17:07 ------- +Looking for confirmation on this bug. + +Full sample: + +using System; + +class X { +static void Main () +{ +double[,] AX = new double[2,4] { +{-.099, -.081, -.081, -.063}, +{-.048, -.038, -.040, -.021}}; +Console.WriteLine("AX values"); +for(int i=0;i<2;i++) + for(int j=0;j<4;j++) + Console.Write(",AX[{0},{1}]={2}",i,j,AX[i,j]); + + +} +} + _______________________________________________ mono-bugs maillist - [email protected] http://lists.ximian.com/mailman/listinfo/mono-bugs
