Skip to content

Instantly share code, notes, and snippets.

@Saanch
Last active August 29, 2015 14:10
Show Gist options
  • Save Saanch/a64f017e1e0ca629ceb4 to your computer and use it in GitHub Desktop.
Save Saanch/a64f017e1e0ca629ceb4 to your computer and use it in GitHub Desktop.
Console Writer
public static void Info(string message, params object[] args)
{
Console.ForegroundColor = ConsoleColor.Cyan;
Console.WriteLine(message, args);
Console.ResetColor();
}
public static void Debug(string message, params object[] args)
{
Console.ForegroundColor = ConsoleColor.Yellow;
Console.WriteLine(message, args);
Console.ResetColor();
}
public static void Error(string message, params object[] args)
{
Console.ForegroundColor = ConsoleColor.Red;
Console.WriteLine(message, args);
Console.ResetColor();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment