I am writing an application in .net 1.1 using c#.
I need to read and store data from a log file.
The log file has 3 types of information:
-the date
-the time
-the event
All 3 are on seperate lines.
I can open the file and read each line.
Any suggestions on the collection I should use to store this information?
I will need to report information from this data.
i.e. the of occurances of a specific event
i.e. times between certian events
I need to read and store data from a log file.
The log file has 3 types of information:
-the date
-the time
-the event
All 3 are on seperate lines.
I can open the file and read each line.
Any suggestions on the collection I should use to store this information?
I will need to report information from this data.
i.e. the of occurances of a specific event
i.e. times between certian events
Comment