rspec/rules/S107/csharp/rule.adoc

53 lines
918 B
Plaintext
Raw Normal View History

2023-08-10 16:54:47 +02:00
:language: csharp
2023-08-10 16:54:47 +02:00
:function: method
:upper_function: Method
2020-06-30 10:16:44 +02:00
2023-08-10 16:54:47 +02:00
include::../description.adoc[]
2020-06-30 10:16:44 +02:00
2023-08-10 16:54:47 +02:00
=== Exceptions
2020-06-30 10:16:44 +02:00
2023-08-10 16:54:47 +02:00
The rule does not count the parameters intended for a base class constructor.
2023-08-10 16:54:47 +02:00
With a maximum number of 4 parameters:
[source,csharp]
----
public class BaseClass
{
public BaseClass(int param1)
{
// ...
}
}
public class DerivedClass : BaseClass
{
2023-08-10 16:54:47 +02:00
public DerivedClass(int param1, int param2, int param3, string param4, long param5) : base(param1) // Compliant by exception
{
// ...
}
}
----
ifdef::env-github,rspecator-view[]
'''
== Implementation Specification
(visible only on this page)
=== Message
\[Constructor|Method|Lambda|Delegate] has {0} parameters, which is greater than the {1} authorized.
include::../parameters.adoc[]
'''
== Comments And Links
(visible only on this page)
include::../comments-and-links.adoc[]
endif::env-github,rspecator-view[]