I am tasked to build a program which takes input from a spss datafile and generates a script-textfile based on the datafile. The language of the script is rather esoteric (GESS) but tends to be verbose, so that the average file can easily reach 4.000 lins or more. Since I like to use vb.net I am wondering if there is a "best way"?
Since strings are kind of memory intensive, I am wondering if it is more efficient to use stringbuilder instead of string? Also i cannot the write the file to the disk - some elements have to go to the top of the file, wile others have to be appended to the end. So is it a problem to hold this file in memory, and what would be the best data structure?
Andy Ideas would be appreciated - I like to think this topic through before I got bogged down by a bad solution.