C# Class UnitWrappers.System.ConsoleWrap

Wrapper for Console class.
Inheritance: IConsole
Mostrar archivo Open project: OpenSharp/UnitWrappers

Public Methods

Method Description
ResetColor ( ) : void
SetOut ( TextWriter newOut ) : void
Write ( char value ) : void
Write ( string value ) : void
WriteLine ( ) : void
WriteLine ( string value ) : void
WriteLine ( string format, object arg0 ) : void
WriteLine ( string format, object arg0, object arg1 ) : void
WriteLine ( string format, object arg0, object arg1, object arg2 ) : void

Method Details

ResetColor() public method

public ResetColor ( ) : void
return void

SetOut() public method

public SetOut ( TextWriter newOut ) : void
newOut System.IO.TextWriter
return void

Write() public method

public Write ( char value ) : void
value char
return void

Write() public method

public Write ( string value ) : void
value string
return void

WriteLine() public method

public WriteLine ( ) : void
return void

WriteLine() public method

public WriteLine ( string value ) : void
value string
return void

WriteLine() public method

public WriteLine ( string format, object arg0 ) : void
format string
arg0 object
return void

WriteLine() public method

public WriteLine ( string format, object arg0, object arg1 ) : void
format string
arg0 object
arg1 object
return void

WriteLine() public method

public WriteLine ( string format, object arg0, object arg1, object arg2 ) : void
format string
arg0 object
arg1 object
arg2 object
return void