I have a .net assembly which has the com classes.
I want to register this assembly so that my c++ application can call the methods
exposed in .net assembly.
I can register assembly using regasm tool. But I don't want run regasm tool on my client machine.
So the requirement here is to register .net assembly at run-time from c++ application. Also I don't want installer to register assembly.
Can this be possible in C++. I come across manage code which does the similar thing. I also tried RegisterTypeLib api to register the assembly but it does not worked.