Files
codeql/csharp/ql/test/library-tests/methods/Methods2.ql
2018-12-20 10:19:59 +01:00

14 lines
183 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