How can I simplify this?

VB Code:
  1. Sub Run(Func As String, Par() As Variant)
  2.     Select Case UBound(Par)
  3.         Case 0: CallByName Me, Func, VbMethod, Par(0)
  4.         Case 1: CallByName Me, Func, VbMethod, Par(0), Par(1)
  5.         Case 2: CallByName Me, Func, VbMethod, Par(0), Par(1), Par(2)
  6.         Case 3: CallByName Me, Func, VbMethod, Par(0), Par(1), Par(2), Par(3)
  7.         '...
  8.     End Select
  9. End Sub