IndexOf Method (Object)

MySQL Connector.Net

Collapse image Expand Image Copy image CopyHover image
Gets the location of a MySqlParameter in the collection.

Namespace: MySql.Data.MySqlClient
Assembly: MySql.Data (in MySql.Data.dll) Version: 6.8.4.0

Syntax

C#
public override int IndexOf(
	Object value
)
Visual Basic
Public Overrides Function IndexOf ( _
	value As Object _
) As Integer
Visual C++
public:
virtual int IndexOf(
	Object^ value
) override

Parameters

value
Type: System..::..Object
The MySqlParameter object to locate.

Return Value

The zero-based location of the MySqlParameter in the collection.

Implements

IList..::..IndexOf(Object)

See Also