Array.lastIndex Method [AX 2012]
Retrieves the highest index that is used to store a value in the array.
The following example uses the lastIndex method to find the last element in the array and then add a new value after this element.
{
Array myArray = new Array(Types::Integer);
int newValue;
// Other code - values are added to myArray
// and a value is assigned to newValue
myArray.value(myArray.lastIndex()+1, newValue);
}
Community Additions
ADD
Show: