I\'m successfully using System.Diagnostics.Process.Start() to start my external mono executable on windows. However it fails on mac. I\'m not getting any error, simply nothing a
To expand on Bryan answer, please do not hardcode the path /usr/bin/local/ in your code.
To find out the correct path in each system, there are various techniques, but I'm not sure which is the best one:
which mono to locate the full path. For this you would need to call which from another Process instance. (Not sure if which comes by default in all Mac systems)/Library/Frameworks/Mono.framework/Versions/Current/bin/pkg-config (like it is done here).