public TextBoxAppender(TextBox textBox, int bufferSize, double minTimeBetweenUpdatesInMillseconds) { _buffer = new RingBuffer <string>(bufferSize); _bufferedInvoker = new BufferedInvoker(UpdateControl, minTimeBetweenUpdatesInMillseconds); _textBox = textBox; }
public TextBoxAppender(TextBox textBox, int bufferSize, double minTimeBetweenUpdatesInMillseconds) { _buffer = new RingBuffer<string>(bufferSize); _bufferedInvoker = new BufferedInvoker(UpdateControl, minTimeBetweenUpdatesInMillseconds); _textBox = textBox; }