您当前的位置: 首页 >  ar
  • 3浏览

    0关注

    193博文

    0收益

  • 0浏览

    0点赞

    0打赏

    0留言

私信
关注
热门博文

LINQ之ToArray

我寄人间雪满头丶 发布时间:2020-12-08 16:54:58 ,浏览量:3

返回LINQ大全首页

ToArray()

您可以从序列(例如数组或列表)创建数组。 ListIEnumerable可以使用ToArray()直接转换为数组。 MSDN

using System.Linq;
using System.Collections;
using System.Collections.Generic;

public static class Program
{
    static void Main( string[] args )
    {
        List         dataA   = new List() { 0.1f, 2.3f, 6.7f };
        IEnumerable    dataB   = Enumerable.Range( 0, 10 );
        string[]            dataC   = new string[] { "正一郎", "清次郎", "誠三郎", "征史郎" };

        float[]     arrayA  = dataA.ToArray();
        int[]       arrayB  = dataB.ToArray();
        string[]    arrayC  = dataC.ToArray();

        System.Console.WriteLine( "dataA :{0}",  dataA.Text() );
        System.Console.WriteLine( "arrayA:{0}", arrayA.Text() );

        System.Console.WriteLine( "dataB :{0}",  dataB.Text() );
        System.Console.WriteLine( "arrayB:{0}", arrayB.Text() );

        System.Console.WriteLine( "dataC :{0}",  dataC.Text() );
        System.Console.WriteLine( "arrayC:{0}", arrayC.Text() );

        System.Console.ReadKey();
    }

    public static string Text( this IEnumerable i_source )
    {
        string text = string.Empty;
        foreach( var value in i_source )
        {
            text += string.Format( "[{0}], ", value );
        }
        return text;
    }

}

dataA :[0.1], [2.3], [6.7],
arrayA:[0.1], [2.3], [6.7],
dataB :[0], [1], [2], [3], [4], [5], [6], [7], [8], [9],
arrayB:[0], [1], [2], [3], [4], [5], [6], [7], [8], [9],
dataC :[正一郎], [清次郎], [誠三郎], [征史郎],
arrayC:[正一郎], [清次郎], [誠三郎], [征史郎],
关注
打赏
1648518768
查看更多评论
立即登录/注册

微信扫码登录

0.1353s