DataTableCollection::IndexOf Method (DataTable^)
.NET Framework (current version)
Gets the index of the specified DataTable object.
Assembly: System.Data (in System.Data.dll)
Parameters
- table
-
Type:
System.Data::DataTable^
The DataTable to search for.
Return Value
Type: System::Int32The zero-based index of the table, or -1 if the table is not found in the collection.
Use the IndexOf method to determine the exact index of a given table.
Before calling IndexOf, you can test for the existence of a table (specified by either index or name) by using the Contains method.
The following example returns the index of each table in the DataTableCollection.
.NET Framework
Available since 1.1
Available since 1.1
Show: