public string GetRandomNumbers(int YourLength)
{
string[] chars = { "a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r",
"s", "t", "u", "v", "w", "x", "y", "z", "1", "2", "3", "4", "5", "6", "7", "8", "9","A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "P", "Q", "R", "S",
"T", "U", "V", "W", "X", "Y", "Z", "0", "@", "#", "$", "!" };
Random rnd = new Random();
string random = string.Empty;
for (int i = 0; i < YourLength; i++)
{
random += chars[rnd.Next(0, 66)];
}
return random;
}