Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

Console::ResetColor Method ()

 

Sets the foreground and background console colors to their defaults.

Namespace:   System
Assembly:  mscorlib (in mscorlib.dll)

public:
static void ResetColor()

Exception Condition
SecurityException

The user does not have permission to perform this action.

IOException

An I/O error occurred.

The foreground and background colors are restored to the colors that existed when the current process began. For more information, see the ForegroundColor and BackgroundColor properties.

The following example saves the values of the ConsoleColor enumeration to an array and stores the current values of the BackgroundColor and ForegroundColor properties to variables. It then changes the foreground color to each color in the ConsoleColor enumeration except to the color that matches the current background, and it changes the background color to each color in the ConsoleColor enumeration except to the color that matches the current foreground. (If the foreground color is the same as the background color, the text isn't visible.) Finally, it calls the ResetColor method to restore the original console colors.

No code example is currently available or this language may not be supported.

UIPermission

for modifying safe top-level windows and subwindows. Associated enumeration: UIPermissionWindow::SafeTopLevelWindows

.NET Framework
Available since 2.0
Return to top
Show:
© 2017 Microsoft