System.Windows.Data.DataList.this C# (CSharp) Method

this() public method

Gets the item at the specified index within the underlying data.
public this ( int index ) : object
index int The index to lookup.
return object
        public object this[int index]
        {
            get {
                EnsureSnapShot();
                return _snapShot[index];
            }
        }

Same methods

DataList::this ( int index ) : objectIIndexableCollection.System