您的位置:首页 > 产品设计 > UI/UE

fatal error C1190: managed targeted code requires a '/clr' option

2017-02-15 09:26 591 查看
使用c++ com dll调用c# dll报错,报fatal error C1190: managed targeted code requires a '/clr' option

需设置:

1.在“属性”->“配置属性”->“常规”->“公共语言运行库支持”中选取“公共语言运行库支持(/clr)”

2.加上using namespace CSLib;

3.dll路径不正确也会报这个错

我就是路径里多写\,例如:

错误

#using "D:\source\WordClient\Lib\\Fword2xmlFlow.dll"

using namespace Fword2xmlFlow;

正确:

#using "D:\source\WordClient\Lib\Fword2xmlFlow.dll"

using namespace Fword2xmlFlow;

4.在stdafx.h里面添加引用会报错,应该在你编写函数的cpp里面添加。原因可能是vs先处理stdafx.h文件再处理clr选项

参考:http://blog.csdn.net/morewindows/article/details/8678431
http://developer.51cto.com/art/201104/254308.htm
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  c# C1190 clr