标签: c# resharper local-functions
是否可以通过某种方式通知ReSharper本地函数的返回值为NotNull或CanBeNull?
NotNull
CanBeNull
否则,我需要将局部函数转换为成员函数或关闭悲观的可空性检查,因为它们会产生大量警告。
编辑
我知道本地函数不支持属性,但是我想知道是否有任何技巧。
例如,您不能在方法中放置属性,但是可以通过编写// ReSharper disable once InconsistentNaming来禁用带有注释的警告。我正在寻找这样的把戏。
// ReSharper disable once InconsistentNaming