我想通过用字符串查找字段来获取Record中字段的值。
type Test = { example : string }
let test = { example = "this is the value" }
let getByName (s:string) =
???? //something like test.GetByName(s)
答案 0 :(得分:3)
标准.net reflection在这种情况下应该可以正常工作。记录字段作为属性公开,因此您只需使用反射API查询类型即可。 看起来可能像这样:
let getByName (s:string) =
match typeof<Test>.GetProperties() |> Array.tryFind (fun t -> t.Name = s)
with
| Some pi -> Some(pi.GetValue(test))
| None -> None