c# sort array randomly' code example
Example 1: randomize through array in C#
// answer coded by 'mdb' and edited later on by 'Caius Jard'
Random rnd = new Random();
string[] MyRandomArray = MyArray.OrderBy(x => rnd.Next()).ToArray();
Example 2: randomize through array in C#
using System;
using System.Collections.Generic;
namespace whatever_you_want
{
public class Randomizer
{
public static T Randomize<T>(List<T> array)
{
Random rnd = new Random();
return array[rnd.Next(0, array.Count)];
}
}
}