Čaba Šagi 91d028fdb6
Modify rule S3871: Update to LaYC (#2138)
## Review

A dedicated reviewer checked the rule description successfully for:

- [x] logical errors and incorrect information
- [x] information gaps and missing content
- [x] text style and tone
2023-06-12 15:18:25 +02:00

33 lines
661 B
Plaintext

include::../why-dotnet.adoc[]
== How to fix it
=== Code examples
==== Noncompliant code example
[source,csharp,diff-id=1,diff-type=noncompliant]
----
internal class MyException : Exception // Noncompliant
{
// ...
}
----
==== Compliant solution
[source,csharp,diff-id=1,diff-type=compliant]
----
public class MyException : Exception
{
// ...
}
----
include::../resources-dotnet.adoc[]
* https://learn.microsoft.com/en-us/dotnet/csharp/programming-guide/classes-and-structs/access-modifiers[Access modifiers]
* https://learn.microsoft.com/en-us/dotnet/csharp/fundamentals/exceptions[Exceptions and Exception Handling]
include::../rspecator.adoc[]