This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace Audio | |
{ | |
using System; | |
using System.IO; | |
/// <summary> | |
/// Provides methods for saving byte arrays of audio samples to a wav file in mono or stereo. | |
/// </summary> | |
public static class WaveSaver | |
{ |