|
ItMayBeAHack OOD Exercises
An exercise in OOD as guided by ItMayBeAHack.com.
|
Simple interface contract to send output to some form of console. More...
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... | |
Simple interface contract to send output to some form of console.
| void IOutputService.Clear | ( | ) |
Clears console if available.
Implemented in uGUIConsole.
| void IOutputService.Write | ( | object | value | ) |
Write any generic object (should have ToString applied).
| value |
Implemented in uGUIConsole.
| void IOutputService.WriteFormat | ( | string | value, |
| params object[] | values | ||
| ) |
Write output using string.Format() or similar string sonstruction method.
| value | |
| values |
Implemented in uGUIConsole.
| void IOutputService.WriteLine | ( | object | value | ) |
1.8.11