G
Guest
can i be assured that the following ("lastrowadded") will always refer to the last row that was added to the collection? or are there exceptions?
int c= dataSet1.tbl1.Rows.Count;
DataRow lastrowadded=dataSet1.tbl1[c-1];
thanks
int c= dataSet1.tbl1.Rows.Count;
DataRow lastrowadded=dataSet1.tbl1[c-1];
thanks