mirror of
https://github.com/github/codeql.git
synced 2026-03-04 14:46:48 +01:00
11 lines
116 B
Plaintext
11 lines
116 B
Plaintext
/**
|
|
* @name Test for methods
|
|
*/
|
|
import csharp
|
|
|
|
from Method s
|
|
where s.hasName("Swap")
|
|
and s.isStatic()
|
|
select s
|
|
|