Hi, Trying to get faster (text) file reading time. I was reading a series of text files, and concatenating their contents into a large string. this is unbelievably slow. if i just read them, 1096 files are read in less than a second so it's not the reading that's slow as I originally thought. putting the strings into a collection is also fast (seemingly immediate - need to get a timer working to check actual) is concatenating inherently slow? probably because internally a string array is being created and redimmed repeatedly? just curious