Skip to content

Instantly share code, notes, and snippets.

@jasmin-mistry
Created January 28, 2014 12:51
Show Gist options
  • Save jasmin-mistry/8667104 to your computer and use it in GitHub Desktop.
Save jasmin-mistry/8667104 to your computer and use it in GitHub Desktop.
public static void ConsoleWrite(ConsoleColor color, string text)
{
ConsoleColor originalColor = Console.ForegroundColor;
Console.ForegroundColor = color;
Console.Write(text);
Console.ForegroundColor = originalColor;
}
public static void ConsoleWriteLine(ConsoleColor color, string text)
{
ConsoleColor originalColor = Console.ForegroundColor;
Console.ForegroundColor = color;
Console.WriteLine(text);
Console.ForegroundColor = originalColor;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment