NAV 2016: please forgot the C/AL array :)

One of the hidden new feature of NAV 2016 and C/AL language is the possibility to loop on a .NET variable.

You can declare a variable like:

mylist : DotNet System.Collections.Generic.List

and loop through the element in this way:

FOREACH item IN mylist DO
BEGIN
  MESSAGE(item);
END;

You can use all the power of .NET objects in a native way now. Standard arrays are dead for me 😉

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

This site uses Akismet to reduce spam. Learn how your comment data is processed.