C# - 访问从 List继承的集合的项目

发布于 2024-08-29 04:59:07 字数 485 浏览 6 评论 0原文

我正在尝试实现一个从 List 继承的新类,以将文本文件中的内容加载到项目中。

using System.Collections.Generic;
using System.IO;
using System.Linq;

public class ListExt : List<string>
{
    string baseDirectory;

    public void LoadFromFile(string FileName)
    {
        //does not work because _list is private
        this._items = File.ReadAllLines(FileName).ToList();
    }
}

但我不知道如何将这些行加载到 _items 属性中,因为它是私有的。

有什么建议吗?

I am trying to implement a new class inherited from List<string>, to load the contents from a text file to the items.

using System.Collections.Generic;
using System.IO;
using System.Linq;

public class ListExt : List<string>
{
    string baseDirectory;

    public void LoadFromFile(string FileName)
    {
        //does not work because _list is private
        this._items = File.ReadAllLines(FileName).ToList();
    }
}

But I dont know how to load the lines into the _items property because it is private.

Any suggestions?

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

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

发布评论

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

评论(4

我纯我任性 2024-09-05 04:59:07

ListExt 列表 - 因此您可以自己调用AddRange。您无法重新分配列表 - 这实际上会改变this

ListExt is the list - so you can just call AddRange on yourself. You can't reassign the list - that would essentially be changing this.

南汐寒笙箫 2024-09-05 04:59:07

尝试类似的方法:

public void LoadFromFile(string FileName)
{
    base.AddRange(File.ReadAllLines(FileName));
}

Try something like:

public void LoadFromFile(string FileName)
{
    base.AddRange(File.ReadAllLines(FileName));
}
遗忘曾经 2024-09-05 04:59:07

无需通过以下行从 List 派生一个全新的类。

List<string> lines = new List<string>(File.ReadAllLines(path));

No need to derive a whole new class from List<T> over the following line.

List<string> lines = new List<string>(File.ReadAllLines(path));
情绪操控生活 2024-09-05 04:59:07

试试这个:

AddRange(File.ReadAllLines(FileName).ToList());

Try this:

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