我怎么能用 Activator.CreateInstance 重做这个方法
Public Overridable Function setCreditType() As CreditType
Select Case creditTypeId
Case Is = 0
Return New NewCredit(Me)
Case Is = 1
Return New ExecutiveProducer(Me)
Case Is = 2
Return New Producer(Me)
Case Else
Return New NullCredit(Me)
End Select
End Function