I am new to C# and am trying to get a good start.
I am able to make a simple form program with some buttons and stuff. But here is my question:
How - or what is best practice to store user inputs in a program?
Let's say that I create a simple program where user can input a text line via textbox and "add" it to a list via button. When the user closes and open the program again it should have remembered every line that he has entered. (Like a journal).
How is this best accomplished? I have searched google but it hasn't helped me at all. Am I supposed to use a database? Save and read to a text file? (ini / xml?)
And does this simple program need to be installed? Or can it work as an executable exe file - and still save/read on the users computer?
Best regards (sorry for my english).