Reputation: 2127
I have created a C# class library and registered as com object successfully. and i tried to check that by creating a console application and tried to add the reference from the com tab, i could not get the registered com object from there. can any one check how can i test whether the com object registered successfully?
Upvotes: 0
Views: 935
Reputation:
When you register a COM dll with regsvr32 a record is added to the registry. You need to check if that entry is there or not.
Upvotes: 1