ConsoleControl.ConsoleControl.WriteInput C# (CSharp) Method

WriteInput() private method

Writes the input to the console control.
private WriteInput ( string input, Color color, Boolean isRaiseEvent = true ) : void
input string The input.
color Color The color.
isRaiseEvent Boolean Rise input event or not
return void
		private void WriteInput(string input, Color color, Boolean isRaiseEvent = true) {
			//Invoke((Action)(() => {
			lastInput = input;

			// Write the input.
			processInterace.WriteInput(input);

			// Fire the event.
			if (isRaiseEvent)
				FireConsoleInputEvent(input);
			//}));
		}