Como eu retornaria um objeto ou vários valores do PowerShell para executar o código C #?

Algum código c # executa um script powershell com argumentos. Eu quero obter um código de retorno e uma string de volta do Powershell para saber se tudo estava bem dentro do script Powershell.

Qual é o caminho certo para fazer isso - tanto em Powershell e C #

Powershell
<code># Powershell script
# --- Do stuff here ---
# Return an int and a string - how?
# In c# I would do something like this, if this was a method:

# class ReturnInfo
# {
#    public int ReturnCode;
#    public string ReturnText;
# }

# return new ReturnInfo(){ReturnCode =1, ReturnText = "whatever"};
</code>
C #
<code>void RunPowershellScript(string scriptFile, List<string> parameters)
    {

        RunspaceConfiguration runspaceConfiguration = RunspaceConfiguration.Create();

        using (Runspace runspace = RunspaceFactory.CreateRunspace(runspaceConfiguration))
        {
            runspace.Open();
            RunspaceInvoke scriptInvoker = new RunspaceInvoke(runspace);
            Pipeline pipeline = runspace.CreatePipeline();
            Command scriptCommand = new Command(scriptFile);
            Collection<CommandParameter> commandParameters = new Collection<CommandParameter>();
            foreach (string scriptParameter in parameters)
            {
                CommandParameter commandParm = new CommandParameter(null, scriptParameter);
                commandParameters.Add(commandParm);
                scriptCommand.Parameters.Add(commandParm);
            }
            pipeline.Commands.Add(scriptCommand);
            Collection<PSObject> psObjects;
            psObjects = pipeline.Invoke();

            //What to do here?
            //ReturnInfo returnInfo = pipeline.DoMagic();

        }
    }

  class ReturnInfo
  {
      public int ReturnCode;
      public string ReturnText;
  }
</code>

Eu consegui fazer isso de alguma forma hacky usando o Write-Output e contando com convenções como "os últimos dois psObjects são os valores que estou procurando", mas ele iria quebrar com muita facilidade.

questionAnswers(3)

yourAnswerToTheQuestion