Npgsql.NpgsqlParameterCollection.CopyTo C# (CSharp) Method

CopyTo() public method

Copies NpgsqlParameter objects from the NpgsqlParameterCollection to the specified array.
public CopyTo ( Array array, int index ) : void
array System.Array An Array to which to copy the NpgsqlParameter objects in the collection.
index int The starting index of the array.
return void
        public override void CopyTo(Array array, int index)
        {
            NpgsqlEventLog.LogMethodEnter(LogLevel.Debug, CLASSNAME, "CopyTo", array, index);
            (InternalList as ICollection).CopyTo(array, index);
            IRaiseItemChangedEvents x = InternalList as IRaiseItemChangedEvents;
        }

Same methods

NpgsqlParameterCollection::CopyTo ( Npgsql.NpgsqlParameter array, int arrayIndex ) : void