mirror of
https://github.com/markjprice/cs11dotnet7.git
synced 2026-04-05 14:25:37 +00:00
12 lines
277 B
C#
12 lines
277 B
C#
partial class Program
|
|
{
|
|
static void SectionTitle(string title)
|
|
{
|
|
ConsoleColor previousColor = ForegroundColor;
|
|
ForegroundColor = ConsoleColor.Yellow;
|
|
WriteLine("*");
|
|
WriteLine($"* {title}");
|
|
WriteLine("*");
|
|
ForegroundColor = previousColor;
|
|
}
|
|
}
|