Exemplo n.º 1
0
        private void ProcessTextBoxQueue()
        {
            string text = TextboxQueue.DequeueConcat();

            if (!String.IsNullOrEmpty(text))
            {
                Textbox.AppendText(text);
                Textbox.ScrollToEnd();
            }
        }
Exemplo n.º 2
0
 protected void AppendText(object text)
 {
     TextboxQueue.Enqueue(text.ToString());
 }