rspec/rules/S2259/vbnet/exception-code-debug-assert.adoc
2023-07-03 17:26:15 +02:00

9 lines
220 B
Plaintext

[source,vbnet]
----
Imports System.Diagnostics
Public Sub Method(MyObject As Object)
Debug.Assert(MyObject IsNot Nothing)
MyObject.ToString() ' Compliant: 'MyObject' is known to be not Nothing here.
End Sub
----