Accord.DirectSound.AudioOutputDevice.Play C# (CSharp) Method

Play() public method

Starts playing the current buffer.
public Play ( ) : void
return void
        public void Play()
        {
            if (thread == null)
            {
                isPlaying = true;

                // create events
                stop = false;

                // create and start new thread
                thread = new Thread(WorkerThread);
                thread.Start();
            }
        }

Same methods

AudioOutputDevice::Play ( float samples ) : void