gpt4 book ai didi

c# - 在调用扩展方法后,如何让 resharper 知道我的变量不为空?

转载 作者:太空狗 更新时间:2023-10-29 20:19:30 24 4
gpt4 key购买 nike

我有一个扩展方法:

public static bool Exists(this object toCheck)
{
return toCheck != null;
}

如果我使用它然后做这样的事情:

if (duplicate.Exists())
throw new Exception(duplicate);

然后 resharper 警告我可能存在空引用异常。

我知道这是不可能的,但我如何告诉 resharper 这没问题?

最佳答案

您可以使用契约(Contract)注释来做到这一点,但另一个答案中提供的方式对我不起作用(即 - 仍然会产生警告)。但是这个有效:

public static class Extensions {
[ContractAnnotation("null => false; notnull => true")]
public static bool Exists(this object toCheck) {
return toCheck != null;
}
}

要获取 ContractAnnotationAttribute - 推荐的方法是安装 JetBrains.Annotations nuget 包。如果您不想安装包 - 转到 Resharper > 选项 > 代码注释并按“将实现复制到剪贴板”按钮,然后将其粘贴到项目中的任何位置(确保不更改命名空间)。

关于c# - 在调用扩展方法后,如何让 resharper 知道我的变量不为空?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44658747/

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