如何在 .net C# 中读取 .csv 文件扩展名

发布于 2024-10-08 17:55:11 字数 33 浏览 1 评论 0原文

如何在 .net C# 中读取 .csv 文件扩展名

How to read .csv file extension in .net C#

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

撩发小公举 2024-10-15 17:55:11

我只是自己写的——只是一句台词!

using System.IO.File;

return ReadAllLines(@"C:\V3.txt").Select(line => line.Split(',')).ToList();

这将返回一个列表,其中每个项目都是一个 string[],包含每个逗号分隔的值。

I just write my own - it's a one-liner!

using System.IO.File;

return ReadAllLines(@"C:\V3.txt").Select(line => line.Split(',')).ToList();

This will return a list where each item is a string[], contain each of the comma separated values.

仲春光 2024-10-15 17:55:11

FileHelper 基本上为我完成了这个技巧,它很容易使用,并且在主页上有合理的示例: http://www .filehelpers.com/

FileHelper has mostly done the trick for me and it iss easy to use and has reasonable examples at the home page: http://www.filehelpers.com/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文