using System.Collections.Generic;
using System.Threading.Tasks;
static void WriteWithColor(string line, ConsoleColor foregroundColor, ConsoleColor backgroundColor)
Console.BackgroundColor = backgroundColor;
Console.ForegroundColor = foregroundColor;
static void WriteLineWithColor(string line, ConsoleColor foregroundColor, ConsoleColor backgroundColor)
Console.BackgroundColor = backgroundColor;
Console.ForegroundColor = foregroundColor;
static void PrintLineOfIrishFlag()
WriteWithColor(" ", ConsoleColor.Green, ConsoleColor.Green);
WriteWithColor(" ", ConsoleColor.White, ConsoleColor.White);
WriteLineWithColor(" ", ConsoleColor.DarkYellow, ConsoleColor.DarkYellow);
static void Main(string[] args)
static void PrintLineOfFrenchFlag()
WriteWithColor(" ", ConsoleColor.Blue, ConsoleColor.Blue);
WriteWithColor(" ", ConsoleColor.White, ConsoleColor.White);
WriteLineWithColor(" ", ConsoleColor.Red, ConsoleColor.Red);
static void main(string[] args)