Set.toString Method [AX 2012]
Returns a string describing the contents of the set.
The following example creates a set of strings, and then prints out a description of the set and a description of the set contents.
{
// Declare a set of strings
Set names = new Set (Types::String);
;
// Add some values to the set.
names.add("Peter");
names.add("Paul");
names.add("Mary");
print names.definitionString();
print names.toString();
pause;
}
Community Additions
ADD
Show: