cs11dotnet7/vscode/Chapter09/WorkingWithFileSystems/Program.Helpers.cs
2022-03-04 08:34:29 +00:00

13 lines
277 B
C#

partial class Program
{
static void SectionTitle(string title)
{
ConsoleColor previousColor = ForegroundColor;
ForegroundColor = ConsoleColor.Yellow;
WriteLine("*");
WriteLine($"* {title}");
WriteLine("*");
ForegroundColor = previousColor;
}
}