I am using the VS debuggers 'Immediate Window' to call a static API on a class which is an ambiguous type defined in 2 different assemblies.
The call fails with the following message: The type exists in both and
This message makes sense since this is indeed the case. My question is how can I work around this in the debugger to specify which assembly I want to be used for binding this type?
Is there a way to qualify a type with the assembly name that it is defined in?
Thanks Bhavin.