Hi,
How do I call the functions of C# Exe which is already there in the memory ( meaning alaredy loaded ).
from VC++ dll
Urgent work please help me.
Printable View
Hi,
How do I call the functions of C# Exe which is already there in the memory ( meaning alaredy loaded ).
from VC++ dll
Urgent work please help me.
I'm pretty sure you can't.
You'll have to devise a protocol so that other applications can talk to your C# application. Then implement using something like TCP/IP.
Darwen.
From your question I assume you are developing this VC++ DLL, in which case you will need to use the managed VC++ extensions to talk to C# using reflection.Quote:
Originally Posted by Suyambu2002
I suggest you read the migration_guide.doc in your VC++ Directory (e.g. C:\Program Files\Microsoft Visual Studio .NET 2003\Vc7).
All .NET assemblies can talk to each other regardless of the language they were written in (within the limits imposed by CLR and MSIL).