有没有办法在F#中按字符串获取Record字段?

时间:2019-12-20 07:48:37

标签: f#

我想通过用字符串查找字段来获取Record中字段的值。

type Test = { example : string  }
let test = { example = "this is the value" }
let getByName (s:string) =
  ???? //something like test.GetByName(s)

1 个答案:

答案 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