Symphonary.DebugWindow.AddText C# (CSharp) Method

AddText() public method

public AddText ( string text ) : void
text string
return void
        public void AddText(string text)
        {
            textbox1.Text = textbox1.Text + "\n" + text;
            textbox1.ScrollToEnd();
        }