gpt4 book ai didi

c# - 扩展方法 ThrowIf Invert Func

转载 作者:太空宇宙 更新时间:2023-11-03 23:18:41 26 4
gpt4 key购买 nike

我编写了一个扩展方法,如果 bool 函数对给定类型 T 的计算结果为 true/false,该方法将抛出异常。

    public static void ThrowIf<T>(this T source, Func<T,bool> func, string name, bool invert = false)
{
if (func.Invoke(source) != invert)
throw new ArgumentException(func.Method.Name + " check failed, inverted:" + invert, name);
}

我正在按照时尚使用它

name.ThrowIf(String.IsNullOrEmpty, "name");
path.ThrowIf(File.Exists, "path", true);

有没有比在我的 ThrowIf 中传递标志或创建 ThrowIfNot 更简洁的解决方案来包含反转功能​​?

最佳答案

我相信显然另一种方法会更有意义(正如您在问题中已经说过的...):

name.ThrowIf(String.IsNullOrEmpty, "name");
path.ThrowIfNot(File.Exists, "path");

...您可以使用反转 true/false 参数 private 使您的 ThrowIf:

private static void ThrowIf<T>(this T source, Func<T,bool> func, string name, bool invert)
{
if (func.Invoke(source) != invert)
throw new ArgumentException(func.Method.Name + " check failed, inverted:" + invert, name);
}

public static void ThrowIf<T>(this T source, Func<T, bool> func, string name)
=> ThrowIf<T>(source, func, name, false);
public static void ThrowIfNot<T>(this T source, Func<T, bool> func, string name)
=> ThrowIf<T>(source, func, name, true);

顺便说一句,也许最好重构所有内容以使用 code contracts如果您正在寻找实现参数验证:

public void SomeMethod(string someParameter)
{
Contract.Requires<ArgumentException>(!string.IsNullOrEmpty(someParameter));
}

关于c# - 扩展方法 ThrowIf Invert Func<T,bool>,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36247222/

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