Skip to content

Instantly share code, notes, and snippets.

@benbristow
Created October 4, 2015 20:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save benbristow/ac87bf2f5536c331ffdc to your computer and use it in GitHub Desktop.
Save benbristow/ac87bf2f5536c331ffdc to your computer and use it in GitHub Desktop.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Writeline
{
class Program
{
static void Main(string[] args)
{
MyConsole.WriteLine("Hello", ConsoleColor.Red);
MyConsole.WriteLine("Sup");
Console.ReadLine();
}
}
class MyConsole
{
public static void WriteLine(string input, ConsoleColor color = ConsoleColor.White)
{
var currentColor = Console.ForegroundColor;
Console.ForegroundColor = color;
Console.WriteLine(input);
Console.ForegroundColor = currentColor;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment