var rnd = new Random();
var randomized = list.OrderBy(item => rnd.Next());
# cCopyusing System;
using System.Linq;
using System.Security.Cryptography;
namespace randomize_array
{
class Program
{
static void Main(string[] args)
{
int[] arr = { 1, 2, 3, 4, 5 };
Random random = new Random();
arr = arr.OrderBy(x => random.Next()).ToArray();
foreach (var i in arr)
{
Console.WriteLine(i);
}
}
}
}
3
4
5
1
2
for (int i = 0; i < fruitsList.Count; i++)
{
Fruit fruitCurrentIndex = fruitsList[i];
int randomIndex = Random.Range(i, fruitsList.Count);
fruitsList[i] = fruitsList[randomIndex];
fruitsList[randomIndex] = fruitCurrentIndex;
}
private static Random rng = new Random();
public static void Shuffle<T>(this IList<T> list)
{
int n = list.Count;
while (n > 1) {
n--;
int k = rng.Next(n + 1);
T value = list[k];
list[k] = list[n];
list[n] = value;
}
}
using System;
using System.Linq;
using System.Security.Cryptography;
{
class Program
{
static void Main(string[] args)
{
//Array of int
int[] arr = { 1, 2, 3, 4, 5 };
//Assigned the function 'Random()' to 'random'
Random random = new Random();
//generated a random index with 'random.Next()' and placed every int in a
//random index with 'OrderBy()'
//converted the data in an array with 'ToArray()'
arr = arr.OrderBy(x => random.Next()).ToArray();
//Stamp the results
foreach (var i in arr)
{
Console.WriteLine(i);
}
}
}
}