BetterExplorer.MainWindow.CheckImDiskInstalled C# (CSharp) Method

CheckImDiskInstalled() private method

private CheckImDiskInstalled ( ) : bool
return bool
    private bool CheckImDiskInstalled() {
      try {
        ImDiskAPI.GetDeviceList();
        return true;
      } catch (DllNotFoundException) {
        return false;
      }
    }
MainWindow