rspec/rules/S4060/vbnet/rule.adoc

35 lines
543 B
Plaintext
Raw Normal View History

2020-06-30 12:50:28 +02:00
include::../rule.adoc[]
=== Noncompliant code example
[source,vbnet]
----
Public Class MyAttribute ' Noncompliant
Inherits Attribute
Public ReadOnly Property Name As String
Public Sub New(Name As String)
Me.Name = Name
End Sub
End Class
----
=== Compliant solution
[source,vbnet]
----
Public NotInheritable Class MyAttribute
Inherits Attribute
Public ReadOnly Property Name As String
Public Sub New(Name As String)
Me.Name = Name
End Sub
End Class
----
2022-11-04 19:28:12 +01:00
include::../rspecator.adoc[]