Accord.DirectSound.WaveFileAudioSource.Stop C# (CSharp) 메소드

Stop() 공개 메소드

Stops the source.
public Stop ( ) : void
리턴 void
        public void Stop()
        {
            if (this.IsRunning)
            {
                thread.Abort();
                WaitForStop();
            }
        }