BetterExplorer.MainWindow.NavigationController C# (CSharp) Method

NavigationController() private method

Navigates to the Destination When Destination != Current Folder
private NavigationController ( IListItemEx Destination ) : void
Destination IListItemEx The folder you want to navigate to
return void
    private void NavigationController(IListItemEx Destination) {
      if (!Destination.Equals(this._ShellListView.CurrentFolder)) this._ShellListView.Navigate_Full(Destination, true);
    }
MainWindow