mirror of
https://github.com/github/codeql.git
synced 2025-12-18 01:33:15 +01:00
10 lines
195 B
Plaintext
10 lines
195 B
Plaintext
/**
|
|
* @name Test for parameters
|
|
*/
|
|
|
|
import csharp
|
|
import semmle.code.csharp.commons.Collections
|
|
|
|
where forall(Parameter p | p.isParams() | p.getType() instanceof ParamsCollectionType)
|
|
select 1
|