I have a text file with conversions called "ConversionsDefault.txt" such as feet to meters, miles to kilometers, etc. in this format:
Miles|Kilometers|1.6093
Feet|Meters|0.3048
I want to read this text file into a rectangular array consisting of the first length option, the second length option, and the multiplier converting the first to the second.
I also have an add button for adding new conversion types such as A|B|50.00; it could be anything with any multiplier. This add button should add the new conversion types along with the default conversion types to a text file called "Conversions.txt".
Any help would be greatly appreciated.