I have this method signature
Public Function As CreateWorkItem(Of T)() As WorkItem
What is the correct way to invoke this method having string representation of T"?
My failed attempt (simplified for clarity):
Dim controllerType As Type = Type.GetType("AccountingController")
CreateWorkItem(Of controllerType)()