How can I play a sound in WinForms?
NAudio is a great library to reproduce sound, you can find it here: http://naudio.codeplex.com/
And the tutorial is here: http://opensebj.blogspot.com/2009/02/introduction-to-using-naudio.html
For playing sound simply, with no interaction you can use System.Media.SoundPlayer:
System.Media.SoundPlayer player = new System.Media.SoundPlayer();
player.SoundLocation = "soundFile.wav";
player.Play();