Hello
If I have two programs running at the same time, what is the best way to share gloval values from modules in each program?
Right now I can pass arguments when application 1 calls the system dianostic.start to start application 2 but then there is no back and forth communication between the two.
I want to make some decisions on application 1 based on results from application 2.
Do i must use .net remoting or namedPipes even though it is running on one machine only?
Is therean easy way to just get gloval variables values from app 2 to app 1?
like have app2 set a gloval variable to a new value and then have app 1 set its gloval value to app's 2 gloval value?
thanks