DataTableCollection::IndexOf Method (String^, String^)

 

Gets the index in the collection of the specified DataTable object.

Namespace:   System.Data
Assembly:  System.Data (in System.Data.dll)

public:
int IndexOf(
	String^ tableName,
	String^ tableNamespace
)

Parameters

tableName
Type: System::String^

The name of the DataTable object to look for.

tableNamespace
Type: System::String^

The name of the DataTable namespace to look in.

Return Value

Type: System::Int32

The zero-based index of the DataTable with the specified name, or -1 if the table does not exist in the collection.

You specify the name of the DataTable object by using the TableName property.

The following example returns the index of a named table in the DataTableCollection.

No code example is currently available or this language may not be supported.

.NET Framework
Available since 2.0
Return to top
Show: