阅读量:1
您可以使用DataTable的Columns属性来获取某一列的数据。以下是一个示例代码:
DataTable dt = new DataTable(); dt.Columns.Add("ID", typeof(int)); dt.Columns.Add("Name", typeof(string)); dt.Columns.Add("Age", typeof(int)); dt.Rows.Add(1, "John", 25); dt.Rows.Add(2, "Mary", 30); dt.Rows.Add(3, "Tom", 35); // 获取Name列的数据 foreach (DataRow row in dt.Rows) { string name = row["Name"].ToString(); Console.WriteLine(name); }
在上面的例子中,我们创建了一个包含ID、Name和Age三列的DataTable,并添加了几行数据。然后,使用foreach循环遍历DataTable的每一行,通过列名获取Name列的数据,并打印输出。