リフレクションと遅延バインディングのどちらから見ても、VB.NETで何がより適切であるか、または何を使用することが推奨されているか。
'Type can be various objects that have a common property for sure.'
Dim type = sender.GetType()
Dim prop = type.GetProperty("Text", 20)
Dim value = property.GetValue(sender, Nothing)
対:
Dim value = sender.Text