codeql/csharp-all
5.1.4-dev
For other CodeQL resources, including tutorials and examples, see the CodeQL documentation
.
Gets the nth update expression of this for loop (starting at index 0).
n
for
For example, the second (n = 1) update expression is j-- in
n = 1
j--
for (int i = 0, j = 10; i < j; i++, j--) { ... }
Expr getUpdate(int n)