CodeQL library for C#
codeql/csharp-all 0.8.12 (changelog, source)
Search

Member predicate ArrayInitializer::getElement

Gets the ith element of this array initializer, for example the second (i = 1) element is {2, 3} on line 3 (itself an array initializer) in

var ints = new int[,] {
  {0, 1},
  {2, 3},
  {4, 5}
};
Expr getElement(int i)