在form1中我做了:
public static Label lbl4(Label lbl) {
Label lbl4 = lbl;
return lbl4;
}
然后在 Form1 中,我将其用作:
lbl4(label4);
然后在新课程中我使用它:
Local(webSites, Form1.lbl4);
在新类中,方法 Local 应该接受: List , string 问题是在 form1 文本中获取 Label4。
我在新课程中遇到的错误是:
错误 12 参数 2:无法从“方法组”转换为“字符串”
错误 11 'GatherLinks.WebCrawler.Local(System.Collections.Generic.List, string)' 的最佳重载方法匹配有一些无效参数
两者都在同一行:Local(webSites, Form1.lbl4);