System.Data.Common.DataTableMappingCollection.Insert C# (CSharp) Method

Insert() public method

public Insert ( int index, DataTableMapping value ) : void
index int
value DataTableMapping
return void
        public void Insert(int index, DataTableMapping value)
        {
            if (null == value)
            {
                throw ADP.TablesAddNullAttempt(nameof(value));
            }
            Validate(-1, value);
            value.Parent = this;
            ArrayList().Insert(index, value);
        }

Same methods

DataTableMappingCollection::Insert ( int index, object value ) : void