30 lines
491 B
Plaintext
30 lines
491 B
Plaintext
include::../description.adoc[]
|
|
|
|
== Noncompliant Code Example
|
|
|
|
With a maximum number of 4 parameters:
|
|
|
|
----
|
|
public void doSomething(int param1, int param2, int param3, string param4, long param5)
|
|
{
|
|
...
|
|
}
|
|
----
|
|
|
|
== Compliant Solution
|
|
|
|
----
|
|
public void doSomething(int param1, int param2, int param3, string param4)
|
|
{
|
|
...
|
|
}
|
|
----
|
|
|
|
ifdef::env-github,rspecator-view[]
|
|
'''
|
|
== Comments And Links
|
|
(visible only on this page)
|
|
|
|
include::../comments-and-links.adoc[]
|
|
endif::env-github,rspecator-view[]
|