| 147 | } |
| 148 | |
| 149 | void Console::SetForeColor(ConsoleColor color) |
| 150 | { |
| 151 | if (NULL == ConsoleHandle) |
| 152 | return; |
| 153 | |
| 154 | if (TextAttribute.Foreground == color) |
| 155 | return; |
| 156 | |
| 157 | TextAttribute.Foreground = color; |
| 158 | SetConsoleTextAttribute(ConsoleHandle, TextAttribute.AsWord); |
| 159 | } |
| 160 | |
| 161 | void Console::SetBackColor(ConsoleColor color) |
| 162 | { |
nothing calls this directly
no outgoing calls
no test coverage detected