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

Insert() public method

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

Same methods

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