Created
October 28, 2017 01:32
-
-
Save devhawk/18ab4024688755c0323661c91d479df2 to your computer and use it in GitHub Desktop.
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
class Konsole : IDisposable | |
{ | |
ConsoleColor _orig_fg; | |
public static IDisposable Color(ConsoleColor fg) | |
{ | |
var k = new Konsole() | |
{ | |
_orig_fg = Console.ForegroundColor | |
}; | |
Console.ForegroundColor = fg; | |
return k; | |
} | |
public void Dispose() | |
{ | |
Console.ForegroundColor = _orig_fg; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment