Record.ToList
Returns a list of values containing the field values of the input record.
Syntax
Record.ToList(
record as record
) as list
Remarks
Returns a list of values containing the field values from the input record
.
Examples
Example #1
Extract the field values from a record.
Record.ToList([A = 1, B = 2, C = 3])
Result:
{1, 2, 3}
Category
Record.Serialization