mirror of
https://github.com/github/codeql.git
synced 2025-12-18 01:33:15 +01:00
9 lines
224 B
Plaintext
9 lines
224 B
Plaintext
import csharp
|
|
|
|
from Indexer i, Accessor a, string s
|
|
where
|
|
i.getDeclaringType().hasQualifiedName("System", s) and
|
|
s.regexpMatch("Tuple<,*>") and
|
|
a = i.getAnAccessor()
|
|
select i.toStringWithTypes(), a.toStringWithTypes()
|