该类型存在于两个 DLL 中
The type exists in both DLLs
我想使用 Accord 库和 AForge 库中的一些东西。但是当我安装它时,我开始收到以下错误:
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'
在这行代码中:
startingPoint = new IntPoint(point.X, point.Y);
如何确保只使用原始的 AForge DLL?是否有解决方法?
我试过了
AForge.IntPoint
但事实证明,Accord 使用相同的命名空间...!
打开项目的 References
,右键单击违规者,然后选择 select 属性。
将您的别名更改为自定义名称:
然后,每当您想在代码中使用违规引用时,只需将其插入文件顶部即可:
extern alias MyAlias;
我通过检查 Delete all existing files prior to publish
解决了这个问题
我想使用 Accord 库和 AForge 库中的一些东西。但是当我安装它时,我开始收到以下错误:
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'
在这行代码中:
startingPoint = new IntPoint(point.X, point.Y);
如何确保只使用原始的 AForge DLL?是否有解决方法?
我试过了
AForge.IntPoint
但事实证明,Accord 使用相同的命名空间...!
打开项目的 References
,右键单击违规者,然后选择 select 属性。
将您的别名更改为自定义名称:
然后,每当您想在代码中使用违规引用时,只需将其插入文件顶部即可:
extern alias MyAlias;
我通过检查 Delete all existing files prior to publish
解决了这个问题