As a beginner, I came up with some ideas, but I wanted to ask the community about the best way to implement the following program:
It decodes 8 different types of data files. They are all different, but most of them are similar (they contain many similar fields). In addition, there are 3 generations of systems that can generate these files. Each one is slightly different, but generates the same file types.
I need to make a visual application that can be read in any of them, capture the data in the table (using datagridview via datatable at the moment) before plotting the graph on the graph.
There is a bit more, but my question is about the basic structure.
I would like to learn more about how to make the best use of object-oriented methods, if that is good.
I use C # (unless there are recommendations), largely due to my lack of experience and fast development time.
I am currently using one class called "log" which knows what generates / writes the type of open file. It manages reading and exporting in datatable. Then the form can give it a path, wait for it to process the file and request for data display.
Any obvious improvements?
source
share