'宣言
Public Shared Function GetProperty( _
ByVal As System.Type, _
ByVal As System.String, _
ByVal As System.Reflection.BindingFlags, _
ByVal As System.Type, _
ByVal () As System.Type _
) As System.Reflection.PropertyInfo
'使用法
Dim type As System.Type
Dim name As System.String
Dim bindingFlags As System.Reflection.BindingFlags
Dim returnType As System.Type
Dim paramTypes() As System.Type
Dim value As System.Reflection.PropertyInfo
value = Utils.GetProperty(type, name, bindingFlags, returnType, paramTypes)
public static System.Reflection.PropertyInfo GetProperty(
System.Type ,
System.string ,
System.Reflection.BindingFlags ,
System.Type ,
System.Type[]
)