DataTable中查询符合条件的某一行


DataRow[] dr = this.dtSource.Select("name = '小明'");
返回一个datarow集合

获取列数据
string str = dr["name"].ToString();

相关