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

13 lines
277 B
C#
Raw Normal View History

2022-03-04 09:34:29 +01:00
partial class Program
{
static void SectionTitle(string title)
{
ConsoleColor previousColor = ForegroundColor;
ForegroundColor = ConsoleColor.Yellow;
WriteLine("*");
WriteLine($"* {title}");
WriteLine("*");
ForegroundColor = previousColor;
}
}