ConsoleBase - NKS0005
Use SetConsoleColor(Color, true) from KernelColorTools
Context
String
Extended Description
Analysis Comparison
Before the fix
public static void MyFunction() =>
Console.BackgroundColor = ConsoleColor.Green;After the fix
public static void MyFunction() =>
ColorTools.SetConsoleColor(ConsoleColors.Green, true);