Retrieves the version of the BASS_FX.DLL that is loaded.
Namespace: Un4seen.Bass.AddOn.Fx
Assembly: Bass.Net (in Bass.Net.dll) Version: 2.4.17.2
Syntax
Parameters
- fieldcount
- Type: SystemInt32
The number of components to use. The fieldCount ranges from 1 to 4 (major.minor.build.revision).
Return Value
Type: VersionThe BASS_FX version (major.minor.build.revision).
Remarks
Note: Calling this method will also automatically load the library into memory.
Examples
Version expectedVersion = new Version(2, 4); if (BassFx.BASS_FX_GetVersion(2) < expectedVersion) { MessageBox.Show( this, "Wrong BassFx Version!" ); }
See Also