gpt4 book ai didi

c# - 如何从二维数组中随机选择一个位置?

转载 作者:太空宇宙 更新时间:2023-11-03 21:17:27 30 4
gpt4 key购买 nike

我目前正在开发一款控制台问答游戏,为此我需要从二维数组的随机类别中选择随机问题。但我不确定如何从二维数组中随机选取。

我无法显示我的完整阵列,因为它们非常大 - 下面是修剪后的版本:

string[,] mineKategorier = new string[10, 6]
{
{"C#","Question one here", "Question two here", "Question three here"},
{"Spil engines", "Question one here", "Question two here", "Question three here"},
{"Sport", "Question one here", "Question two here", "Question three here"},
};

最佳答案

Random rnd = new Random();
int row = rnd.Next(mineKategorier.GetLength(0));
int column = rnd.Next(mineKategorier.GetLength(1));

string randomKategori = mineKategorier[row, column];

关于c# - 如何从二维数组中随机选择一个位置?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33080397/

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