web
You’re offline. This is a read only version of the page.
close
Skip to main content

Notifications

Announcements

No record found.

Community site session details

Community site session details

Session Id :

An eaxmple of List data structure in AX

Amir Nazim Profile Picture Amir Nazim 5,994

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.

Comments

*This post is locked for comments