rspec/rules/S1145/vbnet/rule.adoc
2020-06-30 17:16:12 +02:00

23 lines
284 B
Plaintext

include::../description.adoc[]
== Noncompliant Code Example
----
If True Then ' Noncompliant
DoSomething()
End If
If False Then ' Noncompliant
DoSomethingElse()
End If
----
== Compliant Solution
----
DoSomething();
' ...
----
include::../see.adoc[]