You could try this:
using System.Runtime.InteropServices;
[DllImport("winmm.dll")]
private static extern bool PlaySound( string lpszName, int hModule, int dwFlags );
When you make a call to the method it will look something like:
PlaySound ("MyFile.wav", null, 1);
Here is a url with...