使用 C# 将 txt 中的值插入二维数组或 Arraylist

发布于 2024-11-28 05:36:43 字数 181 浏览 0 评论 0原文

我是编程新手,需要一些帮助。

我必须读取固定长度的 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 技术交流群。

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

发布评论

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

评论(1

饮惑 2024-12-05 05:36:43

为了逐行读取文本文件:

using (var file = File.OpenText("foo.txt"))
{
    string line;
    while ((line = file.ReadLine()) != null)
    {
        // line will contain the current line being read
    }
}

那么您可以使用 List保存从每一行解析的数据。

In order to read a text file line by line:

using (var file = File.OpenText("foo.txt"))
{
    string line;
    while ((line = file.ReadLine()) != null)
    {
        // line will contain the current line being read
    }
}

Then you could use a List<T> to hold the data being parsed from each line.

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