The question is related to this one, if i fail to do the described there.
Is it possible to run one program from another and call some functions from that run program after start? For example i might want to run little windows program from WCF service that will register on sip server and when i need to-ask it from the service to initiate calls to some numbers. So is it possible(without running some messaging server) and where to find information on how to implement that, if it is?
Thank you.
As a learning experience I recently tried implementing Quicksort with 3 way partitioning in C#. Apart from needing to add an extra range check on the left/right variables before the recursive call, ...