/// <summary> /// Prints a string onto display. Uses printc. /// </summary> /// <param name="text">Text which shall be displayed.</param> public void prints(string text) { foreach (char c in text) { this.printc(c); CurrentText.Append(c); // append string to variable that you can read later on when delivering status information } }
private bool MoveNext() { if (CanMoveAgain = BaseEnumerator.MoveNext()) { CurrentText.Append(Current); } return(CanMoveAgain); }