string errorText = "Username Must Be Created Using The Letters A-Z, a-z, 0-9, or special characters !@#$%^&*";
string regex = // something here
string username = ColorCon.GetStringFromConsole(
prompt: "Create A Username:",
color: ConsoleColor.White,
validator: x => x.IsMatch(regex),
errorMessage: errorText);
string errorText = "Username Must Be Created Using The Letters A-Z, a-z, 0-9, or special characters !@#$%^&*";
string regex = // something here
string username = ColorCon.GetStringFromConsole(
prompt: "Create A Username:",
color: ConsoleColor.White,
validator: x => x.IsMatch(regex),
errorMessage: errorText);