BExplorer.Shell.NavigationLog.NavigationLog C# (CSharp) Method

NavigationLog() public method

A generic constructor
public NavigationLog ( IListItemEx StartingLocation ) : System.Collections.Generic
StartingLocation IListItemEx This location will be added as the first item in
return System.Collections.Generic
        public NavigationLog(IListItemEx StartingLocation)
        {
            HistoryItemsList = new List<IListItemEx>(new[] { StartingLocation });
            CurrentLocPos = 0; //-1;
        }