I have 4 assemblies source code in C#.
Now i want to combine all of these to create a one single regular old style
COM component which can be used by my ASP page.
Is there a way to do this ?
Thanks.
Mahesh
You mean somehow "melding" four assemblies to a single one? No, you can't do
that (well, there's something called a "netmodule" but I don't think you want
to go there) with the binaries, only if you combine the code into a single
assembly.
This has nothing to do with COM per se, it's just not something you can do
with .NET assemblies, regardless of whether they are interop-exposed.

Signature
Klaus H. Probst, MVP
http://www.simulplex.net/
> I have 4 assemblies source code in C#.
>
[quoted text clipped - 5 lines]
> Thanks.
> Mahesh