2.3.12 Skip 、 SkipWhile 、 Take 、 TakeWhile l Skip: 跳过集合的指定前几个元素,此函数延时加载。 例: protected void btnSkip1_Click( object sender, EventArgs e) { int [] ints = new int [] { 1, 2, 3, 4, 5, 6, 7 }; GridView1.DataSource = ints.Skip(3); GridView1.DataBind(); } 执行结果为...