إشعار
يتطلب الوصول إلى هذه الصفحة تخويلاً. يمكنك محاولة تسجيل الدخول أو تغيير الدلائل.
يتطلب الوصول إلى هذه الصفحة تخويلاً. يمكنك محاولة تغيير الدلائل.
Syntax
Record.ToList(record as record) as list
About
Returns a list of values containing the field values from the input record.
Example 1
Extract the field values from a record.
Usage
Record.ToList([A = 1, B = 2, C = 3])
Output
{1, 2, 3}