Air_Hockey_Simulator.frmMain.Output C# (CSharp) Method

Output() public method

public Output ( string s ) : void
s string
return void
        public void Output(string s)
        {
            if (!InvokeRequired)
                txOutput.Text += s + "\r\n";
            else
                this.Invoke(Update, s);
        }