Bender.Collections.GenericListAdapter.this C# (CSharp) Method

this() public method

public this ( int key ) : object
key int
return object
        public object this[int key]
        {
            get { return _type.GetIndexer().GetValue(_list, key); }
            set { _type.GetIndexer().SetValue(_list, key, value); }
        }