Ive noticed that with a Process object you can read and write from the standard input and output stream... being the case if you start a process and redirect your output anything that would show up in the Console will now be in the stream where Console.Write(whatever) is... you pull this off with the Process.StandardOutput.ReadToEnd()... question though is this is great for text... but what about objects.... is there a way to pass an object down a stream? If so how?
Thanks.
Thanks.