Reputation: 9911
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?
Upvotes: 1
Views: 426
Reputation: 9911
I figured it out! I needed to make the implementation of elements virtual. I hope this helps other people with this same issue.
Upvotes: 3