public class Randomizer
{
public static void Randomize<T>(T[] items)
{
Random rand = new Random();
// For each spot in the array, pick
// a random item to swap into that spot.
for (int i = 0; i < items.Length - 1; i++)
{
int j = rand.Next(i, items.Length);
T temp = items[i];
items[i] = items[j];
items[j] = temp;
}
}
}
# 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
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);
}
}
}
}