我有一个数组( double ): ox_test 具有已知数量的元素。
当我编码时:
Array.Sort(ox_test);
然后,只是看看它的数组是否排序:
for (int y = 1; y <= ox_test.Length; y++)
MessageBox.Show(".x: " + ox_test[y]);
.. 我得到 ... 0, 0, 0, 0, 0 (如果元素的数量是 5 )。请帮忙,谢谢!
所以我修改了两个for循环:
for (int y = 0; y < ox_test.Length; y++)
MessageBox.Show(".x: " + ox_test[y]);
// HERE i get the values not sorted but != 0
Array.Sort(ox_test);
for (int y = 0; y < ox_test.Length; y++)
MessageBox.Show(".x s: " + ox_test[y]);
// HERE i get only 0 values