如果我有类似的东西:
public void add(func<string, string> val) { textval = val; // val should be hello }
我想调用这个函数
add((val) => "hello")
public void Add(Func<string, string> val) { var textval = val(""); // textval should be hello }