[Mono-bugs] [Bug 71576][Wis] Changed - ABCREM should obtain relationship info from % operators
bugzilla-daemon@bugzilla.ximian.com
bugzilla-daemon@bugzilla.ximian.com
Mon, 24 Jan 2005 09:05:24 -0500 (EST)
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 vargaz@gmail.com.
http://bugzilla.ximian.com/show_bug.cgi?id=71576
--- shadow/71576 2005-01-24 07:21:42.000000000 -0500
+++ shadow/71576.tmp.13299 2005-01-24 09:05:24.000000000 -0500
@@ -117,6 +117,18 @@
This, however, would be long term goal, as it raises a number of
subtle issues which is not the case to write here.
In any case, doing it in a hackish way inside the abcrem.c file
is not that hard, I just wonder if it's really the case :-)
+
+------- Additional Comments From vargaz@gmail.com 2005-01-24 09:05 -------
+The real life code in Hashtable.cs looks something like this:
+
+ int[] arr = new int [10];
+
+ int sum = 0;
+ uint len = arr.Length;
+ for (uint i = 0; i < 100; ++i)
+ sum += arr [i % len];
+ }
+