use*_*949 2 .net c# lambda
在函数中Test(Func<string,bool> f),如何调用f.invoke()?我收到错误委托'Func'不接受'0'参数
Test(Func<string,bool> f)
Mat*_*hen 5
bool b = f(someString);
要么:
bool b = f.Invoke(someString);
归档时间:
15 年,3 月 前
查看次数:
1648 次
最近记录: