标签: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);
标签:sel 导出 打开 drawing 条件 field int 管理器 explore
原文地址:https://www.cnblogs.com/kikyoqiang/p/10118242.html