BetterExplorer.MainWindow.CheckImDiskInstalled C# (CSharp) Метод

CheckImDiskInstalled() приватный Метод

private CheckImDiskInstalled ( ) : bool
Результат bool
    private bool CheckImDiskInstalled() {
      try {
        ImDiskAPI.GetDeviceList();
        return true;
      } catch (DllNotFoundException) {
        return false;
      }
    }
MainWindow