In Windows Phone project I can play music in background using:
Xaml:
<MediaElement x:Name="mediaplayer"/>
C#:
mediaplayer.Source = new Uri("Woodkid_IRON_AssassinsCreed.mp3", UriKind.Relative);
mediaplayer.Play();
But in msdn Microsoft says this: http://msdn.microsoft.com/en-us/library/hh202978%28v=vs.92%29.aspx
What is the difference? Thanks.