我NAudio.dll
在 C# 应用程序中使用。我发现它IWavePlayer
有这个属性 Volume
,但它已经过时了。
public interface IWavePlayer : IDisposable
{
[Obsolete("Not intending to keep supporting this going forward: set the volume on your input WaveProvider instead")]
float Volume { get; set; }
//..........................
}
那么我应该怎么做才能设置音量呢?有没有人有如何做到这一点的例子?