Tagged Questions
The coclass tag has no wiki summary.
7
votes
1answer
232 views
What does the C# CoClass attribute do?
I found code something like the following in a 3rd party library we're using.
[CoClass(typeof(BlahClass))]
public interface Blah : IBlah
{
}
What is this doing exactly? The msdn documentation ...
6
votes
1answer
129 views
Why is it possible to create a new instance of a COM interface?
I don't have very much background regarding COM nor coclasses, so I don't quite understand why I can use the new operator with an interface. From a language/framework-agnostic view, it's confusing why ...
4
votes
2answers
133 views
How to define implementation of a COM coclass?
I am new to COM, and I looked around on the internet to find how to create a COM class in C++ (to be used by C#). I've seen that in the .idl file, I must put something like this:
[
object,
...
2
votes
2answers
80 views
Is it ok to (ab)use CoClassAttribute to provide a default implementation for an interface?
I recently discovered that it's possible to "new up" an interface in C# by decorating the interface with the CoClassAttribute to specify a default implementation.
[ComImport, ...
1
vote
0answers
73 views
Problem with IAttachmentExecute interface implementation in COM dll [C++]
Im trying to implement the IAttachmentExecute interface in my COM dll (ATL) but I don't know how to connect it (how the code should look like) with AttachmentService which should provide me instance ...