I want to make an password list generator app I not found anything about generate 1000 password at a time most youtube videos generating 1 password
sample code
int minLength = 15;
int maxLength = 15;
string charavailalbe = "ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789";
StringBuilder password = new StringBuilder();
Random random = new Random();
int passwordLength = random.Next(minLength, maxLength + 1);
while (passwordLength-- > 0)
{
password.Append(charavailalbe[random.Next(charavailalbe.Length)]);
}
listBox1.Items.Add(password.ToString());