Closed
Description
Looking through the symbol code for FSharpMemberOrVal
it looks like Properties could be exposed via something like this in FSharpMemberOrVal
member x.TryGetPropertyInfo =
match d with
| P p -> Some (p.GetterMethod, p.SetterMethod)
| _ -> None
However, Im unsure on how I would gain access to Events
, Methods
, and Vals
.
This would enable a direct correlation of FSharp symbols and their corresponding entities in terms of reflection. this would enable tooling such are returning symbols fro a specific location and also bing able to retrieve its value or other reflective properties etc.