mirror of
https://github.com/github/codeql.git
synced 2026-02-27 12:23:41 +01:00
19 lines
385 B
Plaintext
19 lines
385 B
Plaintext
/**
|
|
* @name Unmanaged code
|
|
* @description Finds "extern" methods, implemented by unmanaged code.
|
|
* @kind problem
|
|
* @problem.severity recommendation
|
|
* @precision high
|
|
* @id cs/unmanaged-code
|
|
* @tags reliability
|
|
* maintainability
|
|
*/
|
|
|
|
import csharp
|
|
|
|
from Class c, Method m
|
|
where
|
|
m.isExtern() and
|
|
m.getDeclaringType() = c
|
|
select m, "Minimise the use of unmanaged code."
|