快速问题,其中最快最简单的答案可能是重新安排相关代码,但让我们看看…
所以我有一个If语句(一段代码,它是用C#编写的完整工作解决方案的一部分),使用VB.NET重写。我知道VB.NET IIf(a,b,c)方法评估b和a无论第一次评估的真实性,但这似乎也是我的标准结构的情况:
If (example Is Nothing Or example.Item IsNot compare.Item) Then 'Proceed End If
或者,更恰当地:
If (example Is Nothing Or Not example.Item = compare.Item) Then 'Proceed End If
这里,如果示例是Nothing(null),那么我仍然得到一个NullReferenceException – 这是我的错,或者是我只是忍受在VB.NET的想法的东西?
这是你的“错误”,这就是如何
原文链接:https://www.f2er.com/vb/256188.htmlOr
被定义,所以它是你应该期待的行为:
In a Boolean comparison,the Or operator always evaluates both expressions,which could include making procedure calls. The OrElse Operator (Visual Basic) performs short-circuiting,which means that if expression1 is True,then expression2 is not evaluated.
但你不必忍受它。您可以使用OrElse
获得短路行为。
所以你可能想要:
If (example Is Nothing OrElse Not example.Item = compare.Item) Then 'Proceed End If
我不能说它读得非常好,但它应该工作…