Playing Audio in XNA

Sound is too importand for a game,
if we are playing a horror game sound should make us feel fear,
if we are playing a action game, we must get exited by music of the game.

protected override void LoadContent()
{
sound = game.Content.Load(”sound”);(loading sound)

MediaPlayer.IsRepeating = true;(repeating sound)

MediaPlayer.Play(muzik);(finally playing)
}