BrightIdeasSoftware.FastObjectListDataSource.RebuildIndexMap C# (CSharp) Метод

RebuildIndexMap() защищенный Метод

Rebuild the map that remembers which model object is displayed at which line
protected RebuildIndexMap ( ) : void
Результат void
        protected void RebuildIndexMap() {
            this.objectsToIndexMap.Clear();
            for (int i = 0; i < this.filteredObjectList.Count; i++)
                this.objectsToIndexMap[this.filteredObjectList[i]] = i;
        }
        readonly Dictionary<Object, int> objectsToIndexMap = new Dictionary<Object, int>();