Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

Search results

  1. anvis

    C# run command line from C# on macOS

    I am trying to run the macOS terminal using the process class in c# with this code Process compiler = new Process() ; compiler.StartInfo.FileName = "/bin/bash"; compiler.StartInfo.Arguments = "pwd"; compiler.StartInfo.UseShellExecute = false; compiler.StartInfo.RedirectStandardOutput =...
Back
Top Bottom