使用 C# 将 txt 中的值插入二维数组或 Arraylist
我是编程新手,需要一些帮助。
我必须读取固定长度的 txt 文件,并从二维数组或数组列表中的每一行插入两个值。我认为最好的选择是动态数组...
我已经阅读了相关主题,但我还不清楚...
请给我一些帮助。
先感谢您!
我无法附加任何代码,因为我不在办公室知道......
I am new in programming and want some help with this.
I have to read a fixed length txt file, and to insert two values form each line in a two dimension array or arraylist. I think that the best choise is the a dynamic array...
I have read the relative topics but it;s not clear to me yet...
Could give me some help please.
Thank you in advance!
I cannot attach any code as I'am out of office know...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为了逐行读取文本文件:
那么您可以使用
List
保存从每一行解析的数据。In order to read a text file line by line:
Then you could use a
List<T>
to hold the data being parsed from each line.