有什么方法可以知道 Bass 音频库是否支持文件扩展名(例如 WAV/AIFF/MP3/MP2/MP1/OGG )?我想写一个像这样的函数:
Public void Play(string File)
{
if(IsSupportedFile(file)
{
// Add the appropriate code to play the file
}
}
Public bool isSupported(string File)
{
// Should return true if the file extension is supported by bass audio and add ons
}