Files
codeql/csharp/ql/test/library-tests/methods/Methods2.ql
2018-08-02 17:53:23 +01:00

13 lines
181 B
Plaintext

/**
* @name Test for methods
*/
import csharp
from Method s
where s.hasName("Divide")
and s.isStatic()
and s.isPublic()
and s.getReturnType() instanceof VoidType
select s