BrightIdeasSoftware.FastObjectListDataSource.GetNthObject C# (CSharp) Method

GetNthObject() public method

Get n'th object
public GetNthObject ( int n ) : object
n int
return object
        public override object GetNthObject(int n) {
            if (n >= 0 && n < this.filteredObjectList.Count)
                return this.filteredObjectList[n];
            
            return null;
        }