Maverick Jones
2
Q:

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();    
1
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)];
        }
    }
}
0

New to Communities?

Join the community