I\'m trying to play a wav sound that stored in byte array called bytes. I know that I should convert the byte array to wav file and save it in my local drive then called the sav
Try this:
System.IO.File.WriteAllBytes("yourfilepath.wav", bytes);