I have a method where I need to resolve the Type of a class. This class exists in another assembly with the namespace similar to:
MyProject.Domain.Model
I am attempting to perform the following:
Type.GetType("MyProject.Domain.Model." + myClassName);
This works great if the code that is performing this action is in the same assembly as the class whose type I am trying to resolve, however, if my class is in a different assembly, this code fails.
I am sure there is a far better way to accomplish this task, but I have not had a lot of experience with resolving assemblies and traversing namespaces within to resolve the type of the class I am looking for. Any advice or tips to accomplish this task more gracefully?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…