国产97色在线|亚洲-欧美人妻另类制服丝袜-欧美人成国产91视频-殷素素一女战二夫|www.ycjrc.net

C# DataTable某一列轉(zhuǎn)換為Array數(shù)組或List<>集合

發(fā)布時間:2018-04-17 16:36 作者:獨(dú)孤劍 閱讀:5115

C# DataTable某一列轉(zhuǎn)換為Array數(shù)組或List<>集合
using System;
using System.Collections.Generic;
using System.Data;
using System.Linq;

namespace ConsoleApp26
{
    class Program
    {
        // 添加引用:System.Data.DataSetExtensions
        static void Main(string[] args)
        {
            DataTable dt = new DataTable();
            dt.Columns.Add("id", typeof(int));
            dt.Columns.Add("title", typeof(string));

            dt.Columns["id"].AutoIncrement = true;
            for (int i = 0; i < 10; ++i)
            {
                DataRow newRow = dt.NewRow();
                newRow["title"] = "標(biāo)題" + i;
                dt.Rows.Add(newRow);
            }

            // System.Data.DataSetExtensions
            string[] array = dt.AsEnumerable().Select(d => d.Field<string>("title")).ToArray();
            List<string> list = dt.AsEnumerable().Select(d => d.Field<string>("title")).ToList();

            Console.Read();
        }
    }
}

微信打賞, 微信掃一掃

支付寶打賞, 支付寶掃一掃

如果文章對您有幫助,歡迎給作者打賞

作者最新文章
開發(fā)過程中解決360兼容模式瀏覽器的方法
云南象群向西南方向遷移,云南離群獨(dú)象距離象群約12公里
吉林做網(wǎng)站最低價格,吉林企業(yè)網(wǎng)站建設(shè)價格低至500元起
守象人直擊云南象群最新動向
網(wǎng)站影響百度蜘蛛抓取量的因素有哪些?為什么我的網(wǎng)站Baidu蜘蛛來的次數(shù)少?
企業(yè)名片
在線客服