rspec/rules/S107/csharp/rule.adoc
2022-02-18 15:53:40 +01:00

62 lines
1.0 KiB
Plaintext

include::../description.adoc[]
== Noncompliant Code Example
With a maximum number of 4 parameters:
[source,csharp]
----
public void doSomething(int param1, int param2, int param3, string param4, long param5)
{
// ...
}
----
== Compliant Solution
[source,csharp]
----
public void doSomething(int param1, int param2, int param3, string param4)
{
// ...
}
----
== Exceptions
[source,csharp]
----
public class BaseClass
{
public BaseClass(int param1)
{
// ...
}
}
public class DerivedClass : BaseClass
{
public DerivedClass(int param1, int param2, int param3, string param4, long param5) : base(param1) // Compliant, the parameters intended for the base class constructor do not count in the sum of the parameter list.
{
// ...
}
}
----
ifdef::env-github,rspecator-view[]
'''
== Implementation Specification
(visible only on this page)
include::message.adoc[]
include::../parameters.adoc[]
'''
== Comments And Links
(visible only on this page)
include::../comments-and-links.adoc[]
endif::env-github,rspecator-view[]