Есть ли способ узнать, поддерживается ли расширение файла аудио библиотекой 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
}