Files
codeql/csharp/ql/examples/extern_method.ql
2019-07-26 17:47:11 +02:00

14 lines
189 B
Plaintext

/**
* @name Extern methods
* @description Finds methods that are 'extern'.
* @tags method
* native
* modifier
*/
import csharp
from Method m
where m.isExtern()
select m