Answer by
Naturecoder (5)
First, read in the file (an easy way to do this is with puter.FileSystem.ReadAllText). After this, split the file by calling the split function, passing the delimiting character (the comma) (myString.Split(",")). You then have to remove the comma from all strings in the array except for the first, which you can do with a for loop and substrings.