クラスから文字列に基づいてメンバーを取得してから型を取得しようとしていますが、運がありません。
Public Class Monster
Public Property Name As String
Public Property EatsPeople As Boolean
Public Property Description As String
End Class
メンバー「EatsPeople」の詳細を取得するには、次のようにします。
Dim t = GetType(Monster) ' Get the type of the Product entity.
Dim fieldMemberInfo = t.GetMember("EatsPeople", BindingFlags.IgnoreCase Or BindingFlags.Public Or BindingFlags.Instance).Single()
どのような組み合わせを試しても、Nothing または RuntimePropertyType のいずれかを取得します
Dim x = fieldMemberInfo.GetType