I'm trying to write a quick cgi app in c#. I need to get to the stdout stream and write some binary data. The only thing I can find to do this is Console.Write, which takes text. I've also tried
Process.GetCurrentProcess().StandardOutput.BaseStream.Write
which doesn't work either. Is this even possible?