public void Qprint(string msg, string TextColor, string BackgroundColor)
{
Console.ForegroundColor = (ConsoleColor)Enum.Parse(typeof(ConsoleColor), TextColor);
Console.BackgroundColor = (ConsoleColor)Enum.Parse(typeof(ConsoleColor), BackgroundColor);
Console.WriteLine(msg);
Console.ResetColor();
}
public void Qprint(string msg, string TextColor, string BackgroundColor)
{
Console.ForegroundColor = (ConsoleColor)Enum.Parse(typeof(ConsoleColor), TextColor);
Console.BackgroundColor = (ConsoleColor)Enum.Parse(typeof(ConsoleColor), BackgroundColor);
Console.WriteLine(msg);
Console.ResetColor();
}