i needed this for a project im working on, its not the best but it kinda works
public static string ProRandName(Random RandNumGen, int Len)
{
char[] consts = {'b', 'c', 'd', 'f', 'g', 'h', 'j', 'k', 'l', 'm', 'n',
'p', 'r', 's', 't', 'v', 'w', 'x', 'y','z', 'B', 'C', 'D',
'F', 'G', 'H', 'J', 'K', 'L', 'M', 'N', 'P', 'R', 'S', 'T', 'V', 'W', 'X', 'Y','Z' };
char[] vowls = { 'a', 'e', 'i', 'o', 'u', 'A', 'E', 'I', 'O', 'U' };
bool cswitch = Convert.ToBoolean(RandNumGen.Next(0, 2));
string final = "";
for (int i = 0; i <= Len; i++)
{
if (cswitch == true)
{
final += consts[RandNumGen.Next(1, 41) - 1];
cswitch = false;
}
else
{
final += vowls[RandNumGen.Next(1, 11) - 1];
cswitch = true;
}
}
return final;
}