System events
-
CEvent in C++ is used to raise event in application and can be received in another (is that right). What is the equivalent in C#? and is it doable to raise an event in a C++ application and receive it in C# application, and how this can be done? Best regards Simos
-
CEvent in C++ is used to raise event in application and can be received in another (is that right). What is the equivalent in C#? and is it doable to raise an event in a C++ application and receive it in C# application, and how this can be done? Best regards Simos
You could use .Net Remoting for inter process communication. Whenever you want to fire an event from process 1, call a method of process 2 by remoting and then in that process 2's method invoke an event. This will be more secure and better approach to trigger an inter process event.
Regards Khalid