本文介绍了错误:由于类具有comimport属性,因此方法必须是extern或abstract的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
亲爱的所有人,
我正在使用Excel RTD Server功能.
我的代码看起来像...
Dear All,
I am working in a Excel RTD Server functionality.
My code looks like...
[ComImport]
[TypeLibType(2)]
[Guid("....................................")]
[ClassInterface()]
public class RTDFunctions : IRtdServer
{
public int ServerStart()
{
//Some body
}
}
我收到以下错误.
由于"RTDFunctions"具有comimport属性,因此"ServerStart"必须为extern或abstract.
提前谢谢.
Mydeen.
I am getting the following error.
Since ''RTDFunctions'' has comimport attribute, ''ServerStart'' must be extern or abstract.
Thanks in advance.
Mydeen.
推荐答案
这篇关于错误:由于类具有comimport属性,因此方法必须是extern或abstract的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!