我想看一下,如何使用匿名方法并在标签中显示结果(Windows窗体):
label1.Text = () => { return "Some text"; };
但这不起作用。它是如何解决的?
答案 0 :(得分:4)
试试这个:
label1.Text = new Func<string>(() => { return "Some text"; })();
答案 1 :(得分:1)
试试这个
Func<string> func = () =>
{
return "Some text";
};
label1.Text= func();
在一行
label1.Text= new Func<string>(() => "Some text")();