How to use a c# component with a vc++ interop?
C#
1
Posts
1
Posters
0
Views
1
Watching
-
Hi, I have to build a layer of serviced components over a DAL (data access layer). Now this DAL was written using interop in VC++. I built my component using a snk - which worked fine till i added the code to access DAL. Now it gives me an error sayin that assemly cannot be created as DAL does not have a strong name. How do I get rid of this problem? How can i reuse the existing component without having to rewrite it in .net environment? I recently read an article sayin that i would have to generate a strong key for the interop dll using tlbimp... but i somehow am not able to figure the parameters out ... has anybody done this? Any help will be appreciated!