我有一个列表(randomRotationVoidList)
需要以随机顺序填充四个不同的数字(90, 180, 270, 360)
,例如: G。 [270, 180, 180, 90, ...]
。到目前为止我发现的所有内容都会生成一个列表,其中包含一定范围之间的随机数。
提前致谢!
答案 0 :(得分:9)
200个数字的样本
x * 90
如果数字模式固定为Random _rnd = new Random();
List<int> result = Enumerable.Range(0, 200).Select(x => 90 * _rnd.Next(1, 5)).ToList();
redis-cli