11,572 questions
It should just be:
method.Invoke(ClsCommon.NewRfrmCurr, new object[] { })
Does RefreshData
accept arguments? If so you'll need to add them into that object array:
method.Invoke(ClsCommon.NewRfrmCurr, new object[] { arg1, arg2, arg3 })