Hi,
i have the following error: System.PlatformNotSupportedException: Marshalling arbitrary types is not supported.
First of all, i have called this:
_ReverbHandle = Bass.BASS_ChannelSetFX(_BassExInstance.Handle, BASSFXType.BASS_FX_DX8_REVERB, 1);
This works, and the effect is starting (i can hear this).
But if i call in the next line this:
Bass.BASS_FXSetParameters(_ReverbHandle, r);
then comes the error.
My enviroment: Visual Studio 2019, UWP App with .NET Standard Library and BASS.NET for Standard.
Andy