DataTable dt = new DataTable();

var test = dt.AsEnumerable();

//跳过dt的前200行,取后100行  即取得200-300行
test.Skip(200).Take(100);


本文转载:CSDN博客