I came across a programming assignment from Princeton University that deals with simulating guitar string plucks (see here).
I tried solving it to C# but I am currently stuck with actually playing the sound. In the example they do it by calling StdAudio.play() with a double value in the range [-1;1]. StdAudio is a class provided by Princeton (and can be found here).
So basically my question boils down to: How would I go about porting the StdAudio class to C#?
Thanks in advance!