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


LINQ ToArray()用法及代码示例


LINQ 中的 ToArray() 运算符用于将集合中的输入元素转换为数组。

LINQ ToArray() 运算符的语法

使用 LINQ ToArray() 运算符将集合转换为数组的语法。

C# 代码

string[] countryarray = countries.ToArray();

在上面的语法中,我们将 "countries" 的集合转换为数组。

方法语法中的 LINQ ToArray() 运算符示例

在此示例中,我们在方法语法中使用 LINQ ToArray() 运算符将输入集合项转换为新数组。

using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace ConsoleApp1
{
    class Program
    {
        static void Main(string[] args)
        {
//Create array countries of string type containing the data.
            string[] countries = { "Uk", "Us", "Russia", "India", "Argentina", "Australia", "China" };
//countries.ToArray() is used to convert the collection of data into the form of array
            string[] countryarray = countries.ToArray();
//foreach loop is used to print the name of the countries
            foreach (string s in countryarray)
            {
                Console.WriteLine(s);
            }
                Console.ReadLine();
        }
    }
}

在上面的例子中,我们有一个字符串类型为 "countries." 的 List 通过使用 ToArray() 方法,我们将 "countries" List 的列表转换为一个数组。为了访问这些元素,我们在 foreach 循环中迭代了数组并将其显示在屏幕上。

输出:

LINQ ToArray() Method

查询语法中的 LINQ ToArray() 运算符

在查询语法中使用 LINQ ToArray() 运算符的示例是:

using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace ConsoleApp1
{
    class Program
    {
        static void Main(string[] args)
        {
            string[] countries = { "India", "China", "US", "Russia", "Argentina", "Australia", "UK" };
//query syntax is used to convert the collection of data into the form of array
            string[] countrArray = (from x in countries select x).ToArray();
            foreach (string s in countrArray)
            {
                Console.WriteLine(s);
            }
                Console.ReadLine();
        }
    }
}

输出:

LINQ ToArray() Method



相关用法


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