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

10 lines
198 B
Plaintext
Raw Normal View History

2023-06-05 11:02:41 +02:00
[source,csharp,diff-id=1,diff-type=noncompliant]
----
public class Program
{
2023-06-07 15:41:34 +02:00
public void WriteMatrix(int[][] matrix) // Noncompliant: data type is not intuitive
2023-06-05 11:02:41 +02:00
{
// ...
}
}
----