|
-
September 3rd, 2004, 01:51 AM
#1
calling methods of already loaded C# Exe from VC++ dll
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.
-
September 3rd, 2004, 09:15 AM
#2
Re: calling methods of already loaded C# Exe from VC++ dll
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.
-
September 7th, 2004, 03:12 PM
#3
Re: calling methods of already loaded C# Exe from VC++ dll
 Originally Posted by Suyambu2002
How do I call the functions of C# Exe which is already there in the memory ( meaning alaredy loaded ).
from VC++ dll
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.
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).
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|