Files
codeql/csharp/old-change-notes/2020-08-26-implicit-array-lengths.md
Josh Soref 29ea496ec9 spelling: implicitly
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
2022-10-19 03:49:16 -04:00

6 lines
307 B
Markdown

lgtm,codescanning
* Inferring the lengths of implicitly sized arrays is fixed. Previously, multi
dimensional arrays were always extracted with the same length for each dimension.
With the fix, the array sizes `2` and `1` are extracted for `new int[,]{{1},{2}}`.
Previously `2` and `2` were extracted.