conIns Function
Dynamics AX 2009
Inserts one or more elements into a container.
container conIns (
container container,
int start,
anytype element,
... )
The first element of the container is specified by the number 1. To insert after the n element, the start parameter should be n+1.
You can also use the += operator to add values of any type into a container. For example, to create a container that contains the first ten square numbers:
int i;
container c;
;
for (i = 1; i < = 10; i++)
{
c += i+i;
}
Community Additions
ADD
Show: