utiliser le système ;
en utilisant System.Collections.Generic ;
en utilisant System.Text ;
anneau d'espace de noms
{
Programme de classe
{
char statique privé[] constante = {
'0','1','2','3','4','5','6','7','8','9',
'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',
'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'
} ;
chaîne statique publique GetRandomStringByLength (int Longueur)
{
StringBuilder newRandom = new StringBuilder();
Aléatoire rd = nouveau Aléatoire();
pour (int i = 0; i < Longueur; i++)
{
newRandom.Append(constant[rd.Next(62)]);
}
return newRandom.ToString();
}
static void Main(string[] arguments)
{
//Obtenir une chaîne de 10 caractères aléatoires
Console.WriteLine(GetRandomStringByLength(10));
Console.ReadLine();
}
}
}
http://www.cnblogs.com/Ring1981/archive/2006/11/30/577400.html