"Nicholas Paldino [.NET/C# MVP]" <mvp@spam.guard.caspershouse.comwrote in
message news:#Gux$T$SJHA.1172@TK2MSFTNGP03.phx.gbl...
Quote:
It should be noted that Jeremy's response is incorrect.
>
Assuming managed C++, you can compile one of your projects into a
netmodule (let's assume the C++ one to start). When compiling the C#
code, on the command line, you would use the /addmodule switch and
reference the C++ module, and it will be included in the assembly and its
manifest.
Also note that while they are then part of the same assembly for security
purposes, I believe they are still separate files (multiple-file assembly).
There is an ILMerge utility around somewhere that would generate a single
file, not sure if it is updated to support the latest .NET assembly format.
Quote:
>
--
- Nicholas Paldino [.NET/C# MVP]
-
mvp@spam.guard.caspershouse.com
>
<Henri.Chinasque@googlemail.comwrote in message
news:b40be9ba-4995-42e0-aba1-7f79c192c43c@c36g2000prc.googlegroups.com...
Quote:
>Hi all,
>>
>Just from a pure curiosity standpoint, would it be possible to have an
>assembly with both c++ and c#? Google searches seem to hint at a "yes"
>but I'm not so sure.
>>
>thanks,
>HC
>
>