mirror of
https://github.com/github/codeql.git
synced 2025-12-16 16:53:25 +01:00
15 lines
343 B
Plaintext
15 lines
343 B
Plaintext
/**
|
|
* @name Override of method
|
|
* @description Finds methods that directly override 'Object.ToString'.
|
|
* @tags method
|
|
* override
|
|
*/
|
|
|
|
import csharp
|
|
|
|
from Method override, Method base
|
|
where base.hasName("ToString")
|
|
and base.getDeclaringType().hasQualifiedName("System.Object")
|
|
and base.getAnOverrider() = override
|
|
select override
|