30 lines
562 B
Plaintext
30 lines
562 B
Plaintext
include::../description.adoc[]
|
|
|
|
== Noncompliant Code Example
|
|
|
|
----
|
|
private void DoSomething()
|
|
{
|
|
// ...
|
|
Console.WriteLine("so far, so good..."); // Noncompliant
|
|
// ...
|
|
}
|
|
----
|
|
|
|
== Exceptions
|
|
|
|
The following are ignored by this rule:
|
|
|
|
* Console Applications
|
|
* Calls in methods decorated with ``++[Conditional ("DEBUG")]++``
|
|
* Calls included in DEBUG preprocessor branches (``++#if DEBUG++``)
|
|
|
|
|
|
ifdef::env-github,rspecator-view[]
|
|
'''
|
|
== Comments And Links
|
|
(visible only on this page)
|
|
|
|
include::comments-and-links.adoc[]
|
|
endif::env-github,rspecator-view[]
|