I'm trying to write out a Byte[] Byte[] array representing a complete file to a file.
The original file fromthefrom the client is sent via TCP and then recivedreceived by a server. The recivedreceived stream is read to a byte array and then sendsent to be processed by this class.
This is mainly to ensure that the reciving TCPClientreceiving TCPClient is readyforready for the next stream and seperateseparate the recivingreceiving end from the processing end.
The FileStreamFileStream class does not take a byte array as an argument or another Stream object ( which does allow you to write bytes to it).
I'm aiming to get the prcessingprocessing done by a differntdifferent thread from the original ( the one with the TCPClient).
Many thanksI don't know how to implement this, Roberto what should I try?