I have exe and dll working in different processes. From the DLL I have to send a large amount of data to the EXE, which will vary from 50 characters to 2000 characters or more (the data is a record of records stored in the database).
I thought of two options:
- Using SendMessage - in which data will be sent in batch mode.
- To transfer data, use an intermediate file.
Can anyone list the pros and cons of methods.
I developed my components using C # .NET
source
share