I need to use some 75 (small) .wav
files in my Winforms C# application and was wondering which system is more efficient (memory wise) - loading a .wav
from a file and playing the sound or using embedded resources?
If I use the file method, I take it the memory would be freed-up after the sound has been played. If I use resources I believe these would not be freed-up until...