I\'m trying to recursively print out all an objects properties and sub-type properties etc. My object model is as follows...
type suggestedFooWidget = {
Here is how I got it to work...
let getMethod = prop.GetGetMethod() let value = getMethod.Invoke(o, Array.empty) ignore <| match value with | :? float as f -> sb.Append(f.ToString() + ", ") |> ignore ...