Microsoft's Media Foundation and DirectShow are interesting frameworks for audio processing, and being from Microsoft, have decent support for C#, wide compatibility and large online communities.
Directshow uses a system of graphs and filters to separate the various components of processing of an audio stream; so you might have a filter for decoding the audio input format, one to do some manipulation of the data, then one to encode the stream into the output format. Stock filters exist to perform hundreds of operations, and there is some really powerful inbuilt behaviour for auto-selecting filters based on the input, output and other filters involved. Once you have a reasonable understanding of how to work with the framework it gives you a jumping off point for writing your own audio manipulation filters. If you want to get a feel for the API, start by having a look at the GraphEdit program which is included in the SDK, which gives a visualization of how the API works.
I have less experience with Media Foundation - but if it builds on DirectShow and yet is more powerful and easier to use then it would likely be a great starting place for you.
Media Foundation is the next
generation multimedia platform for
Windows that enables developers,
consumers, and content providers to
embrace the new wave of premium
content with enhanced robustness,
unparalleled quality, and seamless
interoperability.
Hope this gives you some food for thought.
Introduction to Media Foundation, Introduction to DirectShow, Microsoft Media Foundation with lots of samples and help, DirectShow SDK