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
Can you use either of the standard ways?
typeof( MyClass ); MyClass c = new MyClass(); c.GetType();
If not, you will have to add information to the Type.GetType about the assembly.