I have a c# (win form) visual studio project which i am now compiling using mono on Linux and i have a c++ application . I want to transfer some data between these two applications , what are my options ?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
There are several ways to do this. Some of them are:
Depends on what you need, how big is the data, how often you’ll exchange information, etc.
Most probably, you’ll use a socket connection.
Basically, what you need is IPC (inter-process communication). Read more about it, for example, here