Click here to Skip to main content
15,899,754 members

Comments by Member 10313138 (Top 1 by date)

Member 10313138 7-May-14 12:29pm View    
using System;

class Program
{
static void Main()
{
string[] arr = new string[]
{
"1"
"2"
"3"
"4"
"5"
"6"
"7"
"8"
"9"
"10"
"11"
"12"
"13"
"14"
"15"
"16"
};
string[] shuffle = RandomStringArrayTool.RandomizeStrings(arr);
foreach (string s in shuffle)
{
Console.WriteLine(s);
}
}

I get an error that the RandomStringArrayTool doesn't exist in this context