Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我打算创建一个使用 CSV 文件(读写)的程序。
我可以轻松地使用自己的方法来处理它:收集值、读/写逗号、加载和保存文件。但是,.NET 中是否有现成的工具来避免花费我的时间?
您可以使用String.Join()创建基于 CSV 的字符串并使用String.Split() CSV 数据创建数组。
String.Join()
String.Split()