πConsoleBase - NKS0009
Use ConsoleExtensions.ResetColors()
Context
String
Extended Description
Analysis Comparison
Before the fix
public static void MyFunction()
{
Console.ResetColor();
}After the fix
public static void MyFunction()
{
ConsoleExtensions.ResetColors();
}Suppression
Recommendation
Last updated