Files
codeql/csharp/ql/test/library-tests/methods/Methods1.ql
2021-06-03 13:01:42 +02:00

13 lines
139 B
Plaintext

/**
* @name Test for methods
*/
import csharp
from Method s
where
s.hasName("Swap") and
s.isStatic() and
s.fromSource()
select s