I store some string values in an array list at runtime. When the application closes I want to store the data from the array list in another location so that I can open and retrieve the data the next time the application starts. What are some possible ways to do this?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
You can use
This is the basic. Here are two great articles for this: I used this for storing the High Scores for a simple game. :) Here is a nice tutorial for using Windows registry. |
|||||||||||||
|
|
You could
|
|||
|
ArrayListanymore. You should useList<T>so that you have a strongly typed collection. – Servy Jul 24 '12 at 17:11