Thursday, 27 February 2014

Retrieve DataRow by Index from Dataset in C#

int index = 3;

DataSet ds = GetData();

DataRow dr = ds.Tables[0].Rows[index];


No comments:

Post a Comment