Reputation: 1
Here's my class definition:
[ProgId("MyProject.MyClass")]
[ClassInterface(ClassInterfaceType.None)]
[Guid("...")]
[ComVisible(true)]
public class MyClass : IMyClass
{
...
}
What happens if a com client tries to create my object by the ProgId and there is randomly another one with the same ProgId?
Upvotes: 0
Views: 69