Record.ToList(record as record) as list
返回包含输入 record 中的字段值的值列表。
record
从记录提取字段值。
使用情况
Record.ToList([A = 1, B = 2, C = 3])
输出
{ 1, 2, 3 }