如何在 C++/CLR 中扩展 C# 接口?
我对这个真的很沮丧。我正在尝试在 C++/CLR 中扩展 C# 创建的接口。该接口有一个方法,并且我已在类中声明了它,但编译器不断告诉我,我仍然必须提供该接口方法的实现。我还能做什么?我错过了什么!?
有谁有关于如何在 CLR 中扩展 C# 接口的示例吗?
I'm really frustrated with this one. I'm trying to extend a C# created interface in C++/CLR. The interface has one method and I've declared it in my class, but the compiler keeps telling me that I must still provide an implementation for the interface method. What more can I do? What am I missing!?
Does anyone have any examples of how to extend a C# interface in CLR?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我想通了!我需要使元素的实现变得虚拟。我希望这可以帮助其他人解决同样的问题。
I figured it out! I needed to make the implementation of elements virtual. I hope this helps other people with this same issue.