AX – D365FO – Collection classes in X++ #d365fo

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

D365FO – AX – How to use Map and MapEnumerator (X++)

Similar to Set class, Map class allows you to associate one value (the key) with another value. Both the key and value can be any valid X++ type, including objects. The types of the key and the value are specified in the declaration of the map. The way in which maps are implemented means that … Continue reading D365FO – AX – How to use Map and MapEnumerator (X++)