BitOrchestra.MainForm._Play C# (CSharp) Method

_Play() private method

Plays the current contents of the form.
private _Play ( ) : void
return void
        private void _Play()
        {
            Expression expr;
            SoundOptions opts;
            if (this._Parse(out expr, out opts))
            {
                this._Play(expr, opts);
            }
            else
            {
                this._Sound.Stop();
                this._PlayStop.Text = _PlayText;
            }
        }

Same methods

MainForm::_Play ( Expression Expression, SoundOptions Options ) : void