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.
嘿,我已经在网上搜索过,但找不到任何解决我问题的方法。我的问题是如何使用 asp.net (C#) 读取 .tsv 文件。我只得到 .csv 的结果。
和读取 .csv 文件一样吗?
我相信Fast CSV Reader的可配置性足以让您读取制表符分隔的文件
文件处理遵循本指南,关于 dotnetperls。
line.Split(',');
你要
line.Split('\t');