Reference article : https://docs.microsoft.com/en-us/dynamicsax-2012/developer/collection-classes-in-microsoft-dynamics-ax The collection classes are shown in the following table. ClassDescriptionArraySimilar to the X++ language array type except that it can hold values of any single type, including objects and records. Objects are accessed in a specific order.For more information, see X++, C# Comparison: Array Syntax.ListContains elements that are accessed sequentially.Unlike the Array … Continue reading AX – D365FO – Collection classes in X++ #d365fo
Category: List
AX – D365FO – List class
List Class Contains any number of elements that are accessed sequentially.Lists are structures that can contain values of any X++ type.All the values in the list must be of the same type. Type is defined when the list is created and cannot be changed. All X++ types can be accessable using enum Types:: Lists can … Continue reading AX – D365FO – List class