mirror of
https://github.com/github/codeql.git
synced 2026-04-21 06:55:31 +02: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()
|