I am starting to move from VB6
to C#
. Although I am a experienced programmer (40+ Years) often it is knowing the newer constructs that are the big help rather than diligently translating line by line.
Out company receives orders by text file which consist of a list of lines.
XXX=param1;param2
YYY=param1;param2
In VB6 I have created a very complex string class for searching, extracting, updating, adding, deleting, and inserting these lines.
Does C# offer an already existing construct or will I need to write my own. The Dictionary construct looks good but I am concerned re the number of values, as well as if there is a way that I can import the file in one go without having to read it line by line.