I have an application which implements Asynchronous SOAP. Every 50-100ms I will receive data which is converted into a SortedList
object. I als
Here are some thoughts.
1) Use a StreamWriter to write instead of File. This will be faster than the two step of writing to memory and then to a file.
2) If it all possible parallelize the work. For example if you can you one thread for processing the message and another thread to write the message.
3) I don't think the intent of LINQ is to improve performance, but make manipulations of data easier