如何调用传入 lambda 表达式的函数?

问题描述 投票:0回答:1

如果我有类似的东西:

public void add(func<string, string> 
val)
{
     textval = val; // val should be hello
}

我想调用这个函数

add((val) => "hello")
c# lambda
1个回答
0
投票
public void Add(Func<string, string> val)
{
    var textval = val(""); // textval should be hello
}
© www.soinside.com 2019 - 2024. All rights reserved.