ItMayBeAHack OOD Exercises
An exercise in OOD as guided by ItMayBeAHack.com.
Public Member Functions | List of all members
IOutputService Interface Reference

Simple interface contract to send output to some form of console. More...

Inheritance diagram for IOutputService:
uGUIConsole

Public Member Functions

void Write (object value)
 Write any generic object (should have ToString applied). More...
 
void WriteLine (object value)
 Writes any generic object and appends newline. More...
 
void WriteFormat (string value, params object[] values)
 Write output using string.Format() or similar string sonstruction method. More...
 
void Clear ()
 Clears console if available. More...
 

Detailed Description

Simple interface contract to send output to some form of console.

Member Function Documentation

void IOutputService.Clear ( )

Clears console if available.

Implemented in uGUIConsole.

void IOutputService.Write ( object  value)

Write any generic object (should have ToString applied).

Parameters
value

Implemented in uGUIConsole.

void IOutputService.WriteFormat ( string  value,
params object[]  values 
)

Write output using string.Format() or similar string sonstruction method.

Parameters
value
values

Implemented in uGUIConsole.

void IOutputService.WriteLine ( object  value)

Writes any generic object and appends newline.

Parameters
value

Implemented in uGUIConsole.


The documentation for this interface was generated from the following file: