Hi MarcF
In the File transfer Demo.When receiving file,there is some code like fileStream.Seek(..).
This will ensure that the data is written to the appropriate location。
If it is removed, there will be an error.
But I think this may be cause performance problems.
you know that Tcp Is transmitted in sequence.
But at the time of receiving,The customThreadPool will Upset order。
Make it necessary for us to use fileStream.Seek(..)
Is there a good idea to help solve this problem?
sorry for my poor english
msdc123