I used Xamarin 4.2.2 build 2 for create one MAC app.
In AppDelegate class, I want stop current app and re-start it again by code.
I try with this code:
Process.Start(new ProcessStartInfo ( "open", "/Volumes/AAAA/BBB/bin/Debug/mydemoapp.app") { UseShellExecute = false});
OR
Process.Start("/Volumes/AAAA/BBB/bin/Debug/mydemoapp.app");
But is not successfull.
Can you help me resove this problems?
Thanks