/ListShuffler

Primary LanguageC#MIT LicenseMIT

ListShuffler

ABOUT

No to Random! Yes to Shuffled! Shuffling your List isn't a problem now, thanks to ListShuffler in C#.Net

HOW TO USE?

using ListShuffler;
Collections col = new Collections();
List integers = new List();
integers.Add(1);
integers.Add(2);
integers.Add(3);
integers.Add(4);
integers.Add(5);

foreach(int ix in col.Shuffle<int>(integers)){
  Console.WriteLine(ix);
}
  
Console.ReadKey();