In microsoft Dynamics Axapta, use of Methods in Array
- It hold value of any Single type, either it is objects or records
- such kind of objects can transferred to methods and functions
Methods
1. exist(int)
In arrya to check value is exist in desire positions
2. lastIndex()
To stores Maximum index value in array
3. value(jnt_index, [anytype_value])
It do gets or sets the value of the array member that is stored at the specific indexCheck below details, it holds three differant query object.
Array array = new Array (Types::Class);
array.value(1, new Query());
array.value(2, new Query());
array.value(3, new Query());