BonjourServer.UITextViewExtension.AppendTextLine C# (CSharp) 메소드

AppendTextLine() 공개 정적인 메소드

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