mirror of
https://github.com/github/codeql.git
synced 2025-12-16 16:53:25 +01:00
14 lines
236 B
Plaintext
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
|