using System.Collections.Generic;
public static void Main()
List<string> stringList = new List<string>();
string currentString = "";
Random rnd = new Random();
char[] charList = {'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',
for (int i = 0; i < stringAmount; i++)
for (int a = 0; a < length; a++)
toAdd = charList[rnd.Next(charList.Length)];
toAdd = char.ToUpper(toAdd);
currentString += toAdd.ToString();
stringList.Add(currentString);
foreach (string s in stringList)