Closed. This question needs debugging details。它当前不接受答案。












想要改善这个问题吗?更新问题,以便将其作为on-topic用于堆栈溢出。

4年前关闭。



Improve this question




如何检查数组索引是否超出范围?或防止它发生。

最佳答案

int index = 25;
if(index >= 0 && index < array.Length)
{
    //it exists
}

资料来源:Does Index of Array Exist

10-05 23:54