C# Class Stumps.ConsoleWriter

A class that provides an implementation of T:Stumps.IMessageWriter that writes messages to the Windows console.
Inheritance: IMessageWriter
Afficher le fichier Open project: Cayan-LLC/stumps

Méthodes publiques

Méthode Description
Information ( string message ) : void

Records an information message.

WriteDebug ( string message ) : void

Records a debug message.

WriteError ( string message ) : void

Records an error message.

Private Methods

Méthode Description
WriteToConsole ( string message, ConsoleColor color ) : void

Writes the automatic console.

Method Details

Information() public méthode

Records an information message.
public Information ( string message ) : void
message string The message to record.
Résultat void

WriteDebug() public méthode

Records a debug message.
public WriteDebug ( string message ) : void
message string The message to record.
Résultat void

WriteError() public méthode

Records an error message.
public WriteError ( string message ) : void
message string The message to record.
Résultat void