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
|
|
|
{
|
|
|
|
// ...
|
|
|
|
}
|
|
|
|
}
|
|
|
|
----
|