本文概述
- LINQ AsEnumerable()方法的语法
- LINQ AsEnumerable()方法的示例
LINQ AsEnumerable()方法的语法 C#代码
var result = numarray.AsEnumerable();
在以上语法中, 我们将” numarray” 的列表转换为IEnumerable类型。
LINQ AsEnumerable()方法的示例 这是使用LINQ AsEnumerable方法将列表转换为IEnumerable的示例。
using System;
using System. Collections;
using System.Collections.Generic;
using System. Linq;
using System. Text;
using System.Threading.Tasks;
namespace ConsoleApp1{class Program1{static void Main(string[] args){//here we are creating an array NumArray type of intint[] NumArray = new int[] { 1, 2, 3, 4, 5};
//After applying the AsEnumerable method the output will be store in variable resultvar result = NumArray.AsEnumerable();
//Now we will print the value of variable result one by one with the help of foreach loopforeach (var number in result){Console.WriteLine(number);
}Console.ReadLine();
}}}
在上面的示例中, 我们使用AsEnumerable方法将” NumArray” 的列表转换为IEnumerable类型。
【LINQ AsEnumrable()方法】输出
文章图片
推荐阅读
- LINQ ToDictionary()方法
- LINQ OfType()方法
- LINQ ToLookup()方法
- LINQ Cast()方法
- LINQ ToArray()方法
- LINQ ToList()方法
- LINQ skip操作符
- LINQ TakeWhile分区运算符
- LINQ take分区运算符