好的,我有这个代码:
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 标题..?
即,URLs[0] 的属性...?当我打印 URLs[0].ToString 时,它只给了我 Namespace.URL。
如何打印 URL 类中的变量?