rspec/rules/S2368/vbnet/unintuitive-code.adoc

8 lines
207 B
Plaintext
Raw Normal View History

2023-06-05 11:02:41 +02:00
[source,vbnet,diff-id=1,diff-type=noncompliant]
----
Public Class Program
2023-06-07 15:41:34 +02:00
Public Sub WriteMatrix(matrix As Integer()()) ' Noncompliant: data type is not intuitive
2023-06-05 11:02:41 +02:00
' ...
End Sub
End Class
----