摘要:
3.分区操作符Take作用:可以返回来自输入序列中指定数量的元素,并从输入序列的第一个元素开始计数。简单的说就是获取序列中的前几项原型 public static IEnumerable<T> Take<T>( this IEnumerable<T> source,int count);例子 static void Main(string[] args) { string[] items = { "Hello World", "Welcome to MVC", "Linq to Sql"}; var 阅读全文