vote up 2 vote down star

Hi All, Can someone please detail how to empty an array in Axapta 3.0? Thanks!

flag

1 Answer

vote up 2 vote down check

To free an Array object, just assign null to it:

Array myArray = new Array(Types::Integer);
;
myArray = null; //remove reference to Array so it will be garbage collected

To reset all elements of an array type, assign a value to element 0:

int myArray[10];
;
myArray[0]=0; //reset all elements of the array to their default value
link|flag
Thanks Jay ... most appreciated ... – Namadgi Mar 18 at 1:52

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.