I looked into NAudio classes but couldn't see a class that converts byte array to WAV file. If there is no class like this, how can I convert byte array to WAV file using NAudio?
I want to send a text to RS232 as bytes, then I will get back those bytes into a byte[]
buffer. After getting back data I want to save them as a WAV file using NAudio.
I tried to use WaveBuffer
class but I think I am trying a wrong way.