i have another dummy question for which i can't found good answer.
I have this program where i would like to play first sound, after which i would like to play second sound.
Basicly those sounds are supose to be different phrases like "this is sound number" "one" and son on and on.
I don't know why, but simple using various SoundPlayers results only with playing last sound- "one".
SoundPlayer dzwiek = new SoundPlayer(@"E:\sokol\mp3\zdjecie_nr.wav");
SoundPlayer dzwiek2 = new SoundPlayer(@"E:\sokol\mp3\1.wav");
dzwiek.Play();
dzwiek2.Play();
Would you kindly explain me why this is happening, and what should I do to prevent this issue problem in future?