BonjourServer.UITextViewExtension.AppendTextLine C# (CSharp) Method

AppendTextLine() public static method

public static AppendTextLine ( this textView, string text ) : void
textView this
text string
return void
        public static void AppendTextLine (this UITextView textView, string text)
        {
            textView.Text += String.Format ("\r\n{0}", text);
            textView.ScrollToBottom ();
        }