mirror of
https://github.com/github/codeql.git
synced 2025-12-17 01:03:14 +01:00
15 lines
271 B
Plaintext
15 lines
271 B
Plaintext
/**
|
|
* @id cs/examples/too-many-params
|
|
* @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
|