Files
codeql/csharp/ql/examples/too_many_params.ql
2019-07-26 17:47:11 +02:00

14 lines
236 B
Plaintext

/**
* @name Methods with many parameters
* @description Finds methods with more than ten parameters.
* @tags method
* parameter
* argument
*/
import csharp
from Method m
where m.getNumberOfParameters() > 10
select m