Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

The type exists in both DLLs

I wanted to use something from Accord library as well as the AForge library. But when I installed it, I started getting the following error:

Error CS0433
The type 'IntPoint' exists in both
    'AForge, Version=2.2.5.0, Culture=neutral, PublicKeyToken=c1db6ff4eaa06aeb' and
    'Accord, Version=3.0.2.0, Culture=neutral, PublicKeyToken=fa1a88e29555ccf7'

On this line of code:

startingPoint = new IntPoint(point.X, point.Y);

How can I ensure that I only use the original AForge DLL for this? Is there perhaps a workaround?

I tried

AForge.IntPoint

but as it turns out, Accord uses the same namespace...!

like image 693
Mateen Ulhaq Avatar asked Apr 23 '16 01:04

Mateen Ulhaq


1 Answers

Open up your project's References, right-click on the offender, and select Properties.

enter image description here

Change your Aliases to a custom name:

enter image description here

Then whenever you wish to use your offending reference in your code, simply insert this at the top of your file:

extern alias MyAlias;
like image 80
Mateen Ulhaq Avatar answered Oct 09 '22 05:10

Mateen Ulhaq