tags:

views:

18

answers:

1

I have a alarm clock Winform program with a .wav sound. I would like to bundle the sound file into the exe file so that it is easier to distribute. How can I do this?

+1  A: 

You could include the .wav file as an embedded resource. This link describes how you can play the .wav file that is embedded.

Rohan West