An eaxmple of List data structure in AX
Views (2347)
static void ListSample(Args _args)
{
List list = new List(Types::Record);
Enumerator en ;
list.addEnd(333333);
list.addEnd(111111);
list.addEnd(222222);
en = list.getEnumerator();
while (en.moveNext())
{
print en.current();
}
pause;
}
This was originally posted here.

Like
Report
*This post is locked for comments