예제 #1
0
 /// <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
     }
 }
예제 #2
0
            private bool MoveNext()
            {
                if (CanMoveAgain = BaseEnumerator.MoveNext())
                {
                    CurrentText.Append(Current);
                }

                return(CanMoveAgain);
            }