gpt4 book ai didi

c# - 从 Func 获取 bool 值

转载 作者:行者123 更新时间:2023-11-30 19:59:05 26 4
gpt4 key购买 nike

我想从以下流畅的函数中获取 bool 值:

public IGridWithOptions<T> CursorPointerWhen(Func<T, bool> propertySpecifier)
{
bool r = ????

return this;
}

如何做到这一点?

最佳答案

你可以在你的类中像方法一样调用,因为你有第一个T参数,例如:

T argument = /* get a instance of generic T argument */;
bool r = propertySpecifier(argument);

关于c# - 从 Func<T, bool> 获取 bool 值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25060609/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com