23 lines
284 B
Plaintext
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[]
|