How to register COM dll in VS2008
hi i have crated dll of my c# application and Have signed it but m not getting how to register it as i want to access it in my asp a开发者_高级运维pplication so plz can u provide the steps required for registration
You need to use regasm.exe in order to expose the managed assembly as COM component:
regasm.exe /codebase YourAssembly.dll
Once registered you could use it as you would any COM object.
精彩评论