Click or drag to resize

ConsolePlus Class

Extension methods for standard system Console. Ideally we would provide C# extension methods to the system Console class, but since the system Console class is a static class, extension methods are not supported by C#.
Inheritance Hierarchy
SystemObject
  NetQuarryConsolePlus

Namespace:  NetQuarry
Assembly:  EAP.Core (in EAP.Core.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax
public static class ConsolePlus

The ConsolePlus type exposes the following members.

Methods
  NameDescription
Public methodStatic memberWriteError(String)
Write an error message, with newline, to the system Console with the standard error color (Currently ConsoleColor.Yellow).
Public methodStatic memberWriteError(String, Object)
Write a formatted error message, with newline, to the system Console with the standard error color (Currently ConsoleColor.Yellow). Note: Internally, Console.WriteLine(format, args) is called.
Public methodStatic memberWriteMessage
Write a formatted message, with newline, to the system Console with the specified text color. Note: Internally, Console.WriteLine(format, args) is called.
Top
See Also