vb Code:
  1. Imports System.Reflection
  2.  
  3. Public Class Form1
  4.     Sub Say(ByVal Arg1 As String, ByVal arg2 As String)
  5.         MsgBox(Arg1 & arg2)
  6.     End Sub
  7.  
  8.     Private Sub Form1_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
  9.         Dim MethodName As String = "Say"
  10.         Dim Args() As String = {"Hello, ", "World"}
  11.         Dim thistype As Type = GetType(Form1)
  12.         Dim mi As MethodInfo = thistype.GetMethod(MethodName)
  13.         mi.Invoke(Me, Args)
  14.     End Sub
  15. End Class