码迷,mamicode.com
首页 > Windows程序 > 详细

c# 语句收集

时间:2019-02-14 20:29:55      阅读:191      评论:0      收藏:0      [点我收藏+]

标签:www   sele   title   string   log   com   tps   csharp   ble   

1.将DataTable中的某列转换成数组或者List

string[] arrRate = dtRate.AsEnumerable().Select(d => d.Field<string>("列名")).ToArray();
	
List<string> litRate = dtRate.AsEnumerable().Select(d => d.Field<string>("列名")).ToList();

  

c# 语句收集

标签:www   sele   title   string   log   com   tps   csharp   ble   

原文地址:https://www.cnblogs.com/gudaozi/p/10376586.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!