求一个托管代码的mp3解码器,源码,dll都行。
下面的代码为什么没问题
System.IO.FileStream stream=new System.IO.FileStream(fileString,System.IO.FileMode.Open);
buffer=new Microsoft.DirectX.DirectSound.SecondaryBuffer(stream,Form1.ApplicationDevice);
buffer.Play(0,BufferPlayFlags.Looping);
stream.Close();

我发现stream。close()执行以后,播放仍然在进行,为什么??