gpt4 book ai didi

c# - 使用 [NotNull] 作为方法的参数

转载 作者:IT王子 更新时间:2023-10-29 04:18:41 26 4
gpt4 key购买 nike

考虑 this code来自 ASP.NET MVC 的源代码:

public static IApplicationBuilder UseMvc(
[NotNull] this IApplicationBuilder app,
[NotNull] Action<IRouteBuilder> configureRoutes) {...}

根据 this answer,注解的参数不能为null。那为什么我可以将 null 传递给方法呢?也就是说,在下面的情况下,为什么编译器不给我任何错误?

app.UseMvc(null);

最佳答案

唯一可能导致编译器产生错误的属性是 ObsoleteAttribute .这是因为此属性的行为已硬编码到编译器中。

NotNull 等属性通常用于工具(如 ReSharper)在编写代码时生成警告或错误。请阅读有关此特定属性的信息 here .

您还可以使用 PostSharp 等工具来 issue additional build-time errors .

关于c# - 使用 [NotNull] 作为方法的参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32806369/

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