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