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

Insert() public method

public Insert ( int index, object value ) : void
index int
value object
return void
        public void Insert(int index, object value)
        {
            _type.InvokeAction("Insert", _list, index, value);
        }