I have an application which implements Asynchronous SOAP. Every 50-100ms I will receive data which is converted into a SortedList<double,double> object. I also have a predefined IList<double> which contains all the possible Keys in that SortedList.
I need to iterate through the IList and check if the SortedList contains that key. If it does, I write that value to the csv string; if not, I write 0.0 to the csv string.
Note: The IList has 400 keys. The SortedList will generally be much smaller than 400, around 100 at most.
string MyText = timestamp.ToString("HH:mm:ss");
for (int i = 0; i < AllKeys.Count; i++)
{
double info;
if (MySortedList.TryGetValue(AllKeys[i], out info))
{
MyText += "," + info;
}
else
{
MyText += ",0.0";
}
}
MyText += "\n";
File.AppendAllText(filePath, MyText);
I currently am using the above code to create the csv string before writing it to my file. However, I am finding that this code is lagging my application.
I need help improving the efficiency so that storing the incoming data takes below 50ms. Some additional things:
- I do not have to write to a csv file, I just need to store the data fast. (I can convert from a serialized file to my csv file later)
- I have considered using LINQ, but I am not familiar with the queries and don't know how much more efficient it will be
Edit: I have solved my performance issue by using Conrad's suggestion of making a StreamWriter object. I simply created a static StreamWriter object and write all my text to it before closing the StreamWriter when communication is terminated.