List.definitionString Method [AX 2012]
Returns a description of the type of the elements in the list.
The following example creates a list of integers. The definitionString method is used to print a description of the list.
{
// Create a list of integers
List il = new List(Types::Integer);
// Add some elements to the list
il.addEnd(1);
il.addEnd(2);
il.addStart(3);
// Print a description ofvthe list
print il.definitionString();
print il.toString();
pause;
}
Community Additions
ADD
Show: