rspec/rules/S3871/vbnet/rule.adoc
Č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

32 lines
600 B
Plaintext

include::../why-dotnet.adoc[]
== How to fix it
=== Code examples
==== Noncompliant code example
[source,vbnet,diff-id=1,diff-type=noncompliant]
----
Friend Class MyException ' Noncompliant
Inherits Exception
' ...
End Class
----
==== Compliant solution
[source,vbnet,diff-id=1,diff-type=compliant]
----
Public Class MyException
Inherits Exception
' ...
End Class
----
include::../resources-dotnet.adoc[]
* https://learn.microsoft.com/en-us/dotnet/visual-basic/programming-guide/language-features/declared-elements/access-levels[Access levels]
include::../rspecator.adoc[]