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