What is the best way to load a DTO assembly from an NTier application to use in Reflection?
If I do:
Assembly theAssembly = Assembly.GetExecutingAssembly();
Then it gets the assembly of the UI when I need the Assembly of the DTO
So it gives me: NTIER.UI and I need NTIER.DTO which is in the same folder.
C# code
Go to the complete details ...