Exemplo n.º 1
0
        public static void PlaySync(ISound wave)
        {
            var player = new WavePlayer();

            player.PlayWave(wave, true);
        }
Exemplo n.º 2
0
        public static void Play(ISound wave)
        {
            var player = new WavePlayer();

            player.PlayWave(wave, false);
        }