I am calling Java process from .NET application and I need to redirect console output
to System.String to do some later parsing. Please advice. I would appreciate short code
Set ProcessStartInfo.RedirectStandardOutput and .RedirectStandardError. Then you can read the StandardOutput and StandardError-streams on the Process-object that is returned from Process.Start.