Similar to What is the best format to store test data in a file? I want make some tests with data in my class.
This class must receive a list of data with date and value. So basically, I just need to store values and when I read I can say the initial date and just add a constant to get next correspondent date – value. Something like: 1234.56;6543.21;1111.22
I’m using csv right now, but I’m wondering if some xml, sqlite or pure IEnumerable in C# will be a better option. Some experience about this?
Choose the simplest thing that works and is maintainable. In order of preference