10 lines
198 B
Plaintext
10 lines
198 B
Plaintext
[source,csharp,diff-id=1,diff-type=noncompliant]
|
|
----
|
|
public class Program
|
|
{
|
|
public void WriteMatrix(int[][] matrix) // Noncompliant: data type is not intuitive
|
|
{
|
|
// ...
|
|
}
|
|
}
|
|
---- |