gpt4 book ai didi

C# 函数和条件运算符

转载 作者:太空宇宙 更新时间:2023-11-03 15:32:48 24 4
gpt4 key购买 nike

Duplicate

我能做到:

Func<CategorySummary, decimal> orderByFunc;
if (orderBy == OrderProductsByProperty.Speed)
orderByFunc = x => x.Speed;
else
orderByFunc = x => x.Price;

为什么我不能这样做:

Func<CategorySummary, decimal> orderByFunc = (orderBy == OrderProductsByProperty.Speed) ? x => x.Speed : x => x.Price;

最佳答案

条件运算符上的“类型推断”不够好,我收到一条消息

Type of conditional expression cannot be determined because there is no implicit conversion between 'lambda expression' and 'lambda expression'

你总是可以在右侧显式显示,a la

var o = true ? new Func<int,int>(x => 0) : new Func<int,int>(x => 1);

无论如何,关于 lambda 的类型、类型推断和条件运算符如何交互,这只是一个小麻烦。

关于C# 函数和条件运算符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33154557/

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