MySql.Data.MySqlClient.MySqlParameterCollection.RemoveAt C# (CSharp) Method

RemoveAt() public method

Removes the specified MySqlParameter from the collection using a specific index.
public RemoveAt ( int index ) : void
index int The zero-based index of the parameter.
return void
    public override void RemoveAt(int index)
    {
      object o = items[index];
      Remove(o);
    }

Same methods

MySqlParameterCollection::RemoveAt ( string parameterName ) : void