rspec/rules/S2353/vbnet/rule.adoc

33 lines
717 B
Plaintext
Raw Normal View History

2021-04-28 16:49:39 +02:00
In most cases, indexed properties should be named Item for consistency. Exceptions are when there exists a name which is obviously better, for example ``++System.String.Chars(System.Int32)++``.
2021-04-28 16:49:39 +02:00
== Noncompliant Code Example
----
Module Module1
Dim array = {"apple", "banana", "orange", "strawberry"}
ReadOnly Property Foo(ByVal index As Integer) ' Noncompliant
Get
Return array(index)
End Get
End Property
End Module
----
2021-04-28 16:49:39 +02:00
== Compliant Solution
----
Module Module1
Dim array = {"apple", "banana", "orange", "strawberry"}
ReadOnly Property Item(ByVal index As Integer)
Get
Return array(index)
End Get
End Property
End Module
----