cs11dotnet7/vscode/Chapter09/WorkingWithTarArchives/Program.Helpers.cs

27 lines
680 B
C#
Raw Normal View History

2022-09-19 11:50:44 +02:00
partial class Program
{
static void WriteError(string message)
{
ConsoleColor previousColor = ForegroundColor;
ForegroundColor = ConsoleColor.Red;
WriteLine($"FAIL: {message}");
ForegroundColor = previousColor;
}
static void WriteWarning(string message)
{
ConsoleColor previousColor = ForegroundColor;
ForegroundColor = ConsoleColor.DarkYellow;
WriteLine($"WARN: {message}");
ForegroundColor = previousColor;
}
static void WriteInformation(string message)
{
ConsoleColor previousColor = ForegroundColor;
ForegroundColor = ConsoleColor.Blue;
WriteLine($"INFO: {message}");
ForegroundColor = previousColor;
}
}