44 lines
746 B
Plaintext
44 lines
746 B
Plaintext
include::../description.adoc[]
|
|
|
|
== Noncompliant Code Example
|
|
|
|
----
|
|
if(someCondition) DoSomething();
|
|
----
|
|
|
|
== Compliant Solution
|
|
|
|
----
|
|
if(someCondition)
|
|
{
|
|
DoSomething();
|
|
}
|
|
----
|
|
|
|
== Exceptions
|
|
|
|
Anonymous functions containing a single statement are ignored. Block statements are not considered either.
|
|
|
|
|
|
----
|
|
Func<object, bool> item1 = o => { return true; }; // Compliant
|
|
Func<object, bool> item1 = o => { var r = false; return r; }; // Noncompliant
|
|
----
|
|
|
|
ifdef::env-github,rspecator-view[]
|
|
|
|
'''
|
|
== Implementation Specification
|
|
(visible only on this page)
|
|
|
|
include::../message.adoc[]
|
|
|
|
include::../highlighting.adoc[]
|
|
|
|
'''
|
|
== Comments And Links
|
|
(visible only on this page)
|
|
|
|
include::../comments-and-links.adoc[]
|
|
endif::env-github,rspecator-view[]
|