
334 Chapter 7 • Creating Windows Forms
interface.The IList interface represents a collection of objects that can be individu-
ally indexed.This means that you can use regular collections and even arrays as
data sources for data binding.Although not a comprehensive list,Table 7.19
describes possible data sources that are commonly used for data binding.
Table 7.19
Data Sources for Data Binding
Data Source Description
DataTable The representation of a table. DataTable contains two collec-
tions: DataColumn, representing the columns of data in a
given table (which ultimately determine the kinds of data that
can be entered into that table), and DataRow, representing ...