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

C# 常用语句

时间:2018-12-14 13:04:25      阅读:192      评论:0      收藏:0      [点我收藏+]

标签:sel   导出   打开   drawing   条件   field   int   管理器   explore   

var list = dt.AsEnumerable().Select(t => t.Field<string>("Bed")).ToList();
Select("过滤条件","排序列") dt.Select(" A > 1","A desc");

//打开资源管理器,并选中导出的文件
Process proc = new Process();
proc.StartInfo.FileName = "explorer";
proc.StartInfo.Arguments = @"/select," + localFilePath;
proc.Start();

new System.Drawing.Font("微软雅黑", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, 0);

C# 常用语句

标签:sel   导出   打开   drawing   条件   field   int   管理器   explore   

原文地址:https://www.cnblogs.com/kikyoqiang/p/10118242.html

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