gpt4 book ai didi

c# - 创建一个 nullable 扩展方法,你是怎么做到的?

转载 作者:可可西里 更新时间:2023-11-01 07:45:17 24 4
gpt4 key购买 nike

我有一种情况需要比较可为 null 的类型。
假设您有 2 个值:

int? foo=null;
int? bar=4;

这行不通:

if(foo>bar)

以下有效但显然不适用于 nullable,因为我们将其限制为值类型:

public static bool IsLessThan<T>(this T leftValue, T rightValue) where T : struct, IComparable<T>
{
return leftValue.CompareTo(rightValue) == -1;
}

这有效但不是通用的:

public static bool IsLessThan(this int? leftValue, int? rightValue)
{
return Nullable.Compare(leftValue, rightValue) == -1;
}

如何制作我的 IsLessThan 的通用版本?

非常感谢

最佳答案

试试这个:

public static bool IsLessThan<T>(this Nullable<T> t, Nullable<T> other) where T : struct
{
return Nullable.Compare(t, other) < 0;
}

关于c# - 创建一个 nullable<T> 扩展方法,你是怎么做到的?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6561697/

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