Ejemplo n.º 1
0
 public void Start()
 {
     if (Audios.Count >= 1)
     {
         PutMusicToPlayerWithAudioIndex();
         Console.WriteLine("instartmethod");
         SoundOut.Play();
     }
 }
Ejemplo n.º 2
0
        public void Play()
        {
            if (SoundOut == null)
            {
                return;
            }

            SoundOut.Volume = Volume;
            SoundOut.Play();

            FileReader.Position = 0;
        }