Hi
Am new to programming. Trying to create a simple interface using windows application. I want it to get input from the user, and to save to file to allow for future viewing, editing, deleting.
Will using stream writer/ stream reader work?
Not sure if I'm even on the right course here.
Thanks, appreciate any help.
Loading
Danatas GerviPosted Aug 26, 2009, 3:12 AM
All depends on amount of data and its structure.
In simplest case, if you want to save 3-5 string varibles, you may use
File.WriteAllText();
File.ReadAllText();
To save and to read back the separated string.
If you whant more – read about XmlSerialisation.