BonjourServer.UITextViewExtension.AppendTextLine C# (CSharp) Méthode

AppendTextLine() public static méthode

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