rspec/rules/S3871/csharp/rule.adoc

33 lines
661 B
Plaintext
Raw Normal View History

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]
2022-11-07 10:01:24 +01:00
include::../rspecator.adoc[]