Last active
August 29, 2015 14:10
-
-
Save Saanch/a64f017e1e0ca629ceb4 to your computer and use it in GitHub Desktop.
Console Writer
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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