如何通过“n”?数组到 C# 中的方法,打印为 CSV 文件

发布于 2024-11-29 02:51:40 字数 261 浏览 0 评论 0原文

想象一个 CSV 文件,第一行中的字段标题和下一行中的值都具有相同的大小。

例如,这些是标题

area,hotelnames,zipcode,state

,这些值是

200,star,93117,CA
230,2Star,93116,CA

我需要创建一个通用方法来接受数据并以上述方式将其写入 CSV 文件的值。这些值作为数组传递,可以包含任何类型的数据。

Imagine a CSV file, with the headers for the fields in the first row and values on the next rows, all of the same size.

for example these would be headers

area,hotelnames,zipcode,state

and these the values

200,star,93117,CA
230,2Star,93116,CA

I need to make a common method which would accept the data and write it in the mentioned way to a CSV file. The values are passed as arrays and can contain data of any type.

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

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

发布评论

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

评论(1

清旖 2024-12-06 02:51:40

如果您想生成 CSV 文件,请使用为此而编写的库。不要重新发明轮子;-)

使用 Eddy 在您问题下的评论中建议的 FileHelpers 库。

If you want to generate CSV file then use a library that was written to do just that. Don't reinvent the wheel ;-)

Use FileHelpers library that Eddy suggested in the comments under your question.

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