Пример #1
0
 public void LoadTrackVstPlugin(string location)
 {
     try
     {
         if (location == CurrentTrackVstPluginLocation)
         {
             return;
         }
         BassPlayer.ClearTracksVstPlugin(0);
         if (location != "")
         {
             BassPlayer.LoadTracksVstPlugin(location, 0);
         }
     }
     catch (Exception e)
     {
         HandleException(e);
     }
 }