[Mono-bugs] [Bug 77490][Maj] New - Jagged Array(type double)
initialization fails
bugzilla-daemon at bugzilla.ximian.com
bugzilla-daemon at bugzilla.ximian.com
Tue Feb 7 07:37:25 EST 2006
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 sunvenk at hotmail.com.
http://bugzilla.ximian.com/show_bug.cgi?id=77490
--- shadow/77490 2006-02-07 07:37:25.000000000 -0500
+++ shadow/77490.tmp.15800 2006-02-07 07:37:25.000000000 -0500
@@ -0,0 +1,44 @@
+Bug#: 77490
+Product: Mono: Runtime
+Version: 1.1
+OS: LinuxPPC 2000
+OS Details: Linux Running on Power PC
+Status: NEW
+Resolution:
+Severity:
+Priority: Major
+Component: interop
+AssignedTo: mono-bugs at ximian.com
+ReportedBy: sunvenk at hotmail.com
+QAContact: mono-bugs at ximian.com
+TargetMilestone: ---
+URL:
+Summary: 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:
+
+
+Steps to reproduce the problem:
+1. run the following program
+
+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]);
+
+
+Actual Results:
+Junk values are being displayed
+
+Expected Results:
+Actual values given in array definition
+
+How often does this happen?
+Always
+
+Additional Information:
More information about the mono-bugs
mailing list