rspec/rules/S3453/csharp/compliant-code.adoc
Sebastien Marichal e92bc0b003
Modify rule S3453: LaYC format (#2334)
## Review

A dedicated reviewer checked the rule description successfully for:

- [ ] logical errors and incorrect information
- [ ] information gaps and missing content
- [ ] text style and tone
- [ ] PR summary and labels follow [the
guidelines](https://github.com/SonarSource/rspec/#to-modify-an-existing-rule)
2023-06-30 15:34:50 +02:00

7 lines
177 B
Plaintext

[source,csharp,diff-id=1,diff-type=compliant]
----
public class MyClass // Compliant: the class contains at least one non-private constructor
{
public MyClass() { ... }
}
----