gpt4 book ai didi

c# - 重置一个字符数组

转载 作者:行者123 更新时间:2023-11-30 19:16:01 25 4
gpt4 key购买 nike

我有一个字符数组:

public static char[] boardposition = new char[9];

我想重置数组,我写的函数是:

public static void Reset()
{
Array.Clear(boardposition,9, boardposition.Length);
}

当我调用 Reset() 时,我得到了 IndexOutOfRangeException 类型的异常。

希望大家帮帮我。

最佳答案

您将 9 作为起始索引传递,这不是您数组的有效索引。像这样调用 Array.Clear(boardposition,0, boardposition.Length);

关于c# - 重置一个字符数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29671177/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com