I know what the following expression does; what I want to know is how is it called in the C# specification?
var a= new int[3] { 1, 2, 3 };
a[^1];
Answer: 3
I know what the following expression does; what I want to know is how is it called in the C# specification?
var a= new int[3] { 1, 2, 3 };
a[^1];
Answer: 3