BelhardTraining.ConnectionPoolingDemo.ControlExtensions.AppendLine C# (CSharp) Method

AppendLine() public static method

public static AppendLine ( this textBox, string line ) : void
textBox this
line string
return void
        public static void AppendLine(this TextBoxBase textBox, string line)
        {
            textBox.AppendText(line);
            textBox.AppendText(Environment.NewLine);
        }
ControlExtensions