Play a Sound file as a URL Link in WPF
Does anybody have an Idea, why it isnt working, it always says its null
c#
private void soundButton_Click(object sender, RoutedEventArgs e)
{
MediaPlayer playSound = new MediaPlayer();
playSound.Open(new Uri("https://www.pokewiki.de/images/5/53/Ruf_393.mp3"));
playSound.Play();
}