gpt4 book ai didi

c# - 访问列表自定义类中的项目

转载 作者:太空宇宙 更新时间:2023-11-03 21:58:21 25 4
gpt4 key购买 nike

好的,我有这个代码:

URLs.Add(new URL(str.URL, str.Title, browser));

这是 URL 类:

public class URL
{
string url;
string title;
string browser;
public URL(string url, string title, string browser)
{
this.url = url;
this.title = title;
this.browser = browser;
}
}

现在,我如何访问 URL 标题..?
即,URL 的属性 [0]...?当我打印 URLs[0].ToString 时,它只给我 Namespace.URL。
如何打印 URL 类中的变量?

最佳答案

升级您的类以公开公共(public)属性:

 public class URL 
{
public string Url { get; set; }
public string Title { get; set; }
public string Browser { get; set; }
public URL(string url, string title, string browser)
{
this.Url = url;
this.Title = title;
this.Browser = browser;
}
}

然后像这样访问您的属性:

foreach(var url in URLs)
{
Console.WriteLine(url.Title);
}

关于c# - 访问列表自定义类中的项目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11274432/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com