I am trying to write a fast cgi application in C #. I need to go to the stdout stream and write some binary data. The only thing I can find is Console.Write, which accepts text. I also tried
Process.GetCurrentProcess().StandardOutput.BaseStream.Write
which doesn't work either. Is it possible?
chris
source share