我想在随机的元素列表中选择一些项目。
我认为我不够清楚,然后是代码:
int numberToken;
List<List<int>> arr = new List<List<int>>();
for (int i = 0; i < 10; i++)
{
List<int> row = new List<int>()
{
1, 2, 3, 4
};
arr.Add(row);
}
foreach (List<int> row in arr)
{
foreach (int _case in row)
{
// Display the multidimensional list
Random randomToken = new Random();
// Put random numbers in the multidimensional list.
// The random numbers will be between 1 and 4.
numberToken = randomToken.Next(1, 5);
Console.Write(" " + numberToken + " ");
}
Console.WriteLine();
}
所以我想选择这个列表的每个数字并将它们放在一个变量中。就像将所有数字1放在一个变量中一样,所有数字都是2.我还试图将随机列表中的列表数字随机地放入随机数字中,但我真的不知道如何做到这一点。 / p>
非常感谢你的帮助!告诉我,如果我不够清楚。