C# foreach循环和for循环转换?

如何转换成for循环?
2025-03-10 00:31:57
推荐回答(1个)
回答1:

for (int i = 0; i < arr.Length; i++)
{
int[] pos = arr[i];
if(...)
...
}
...