cs11dotnet7/vscode/Chapter11/LinqWithEFCore/Program.Helpers.cs
2022-03-06 10:37:59 +00:00

13 lines
281 B
C#

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