我想使用lambda表达式做一些事情并且它不使用任何参数,我知道我可以使用() => foo()
形式,但我无法弄清楚该函数的作用lambda作为参数传递的原型
这是代码
class c {
public static void Main() {
Bar(() => Console.WriteLine("Hey"));
}
public static void Bar(what_goes_here foo) {
foo(); //Should print "Hey"
}
}