[]
Classes that implement this interface can be regarded as DataTable data sources.
public interface ITableDataSource
Get the column count.
int GetColumnCount()
The column count.
Get the column index.
int GetColumnIndex(string columnName)
columnName
stringThe column name.
The column index.
Get the column name.
string GetColumnName(int column)
column
intStart from 0.
The column name.
Get the row count.
int GetRowCount()
The row count.
Get value from the data source.
object GetValue(int row, int column)
The value.