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

this() public method

Gets the MySqlParameter at the specified index.
public this ( int index ) : MySqlParameter
index int
return MySqlParameter
    public new MySqlParameter this[int index]
    {
      get { return (MySqlParameter)GetParameter(index); }
      set { SetParameter(index, value); }
    }

Same methods

MySqlParameterCollection::this ( string name ) : MySqlParameter