当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


LINQ AsEnumrable()用法及代码示例


在 LINQ 中,AsEnumerble() 方法用于将给定列表的特定类型转换为其 IEnumerable() 等效类型。

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 int
            int[] NumArray = new int[] { 1, 2, 3, 4,5};
//After applying the AsEnumerable method the output will be store in variable result
            var result = NumArray.AsEnumerable();
//Now we will print the value of variable result one by one with the help of foreach loop
            foreach (var number in result)
        {
            Console.WriteLine(number);
        }
            Console.ReadLine();
        }
        }
}

在上面的示例中,我们使用 AsEnumerable 方法将 "NumArray" 的列表转换为 IEnumerable 类型。

输出:

LINQ AsEnumrable() Method



相关用法


注:本文由纯净天空筛选整理自 LINQ AsEnumrable() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。