joe_pool_is
Contributor
I've been trying to find a way to save the settings of projects that clients' create with my C# projects. They can set page orientations, set paths, windows positions, etc. All these values are stored in my running application using a class called ThisProject that encapsulates the settings:
ThisProject objProj = new ThisProject();
What are good, accepted methods of saving information like this?
* I have found information on Serializing, but this seems to be set up for writing text files.
* I noticed the Project > Properties has a Settings tab, but I can't find much info on what this is meant to save, where it is saved, how to write to it or retrieve it during code.
I'm trying to familiarize myself with C# during my time off (until Jan 3rd). I've used only VB.NET (2002) and C++ in the past, so learning C# seems like a great idea!
ThisProject objProj = new ThisProject();
What are good, accepted methods of saving information like this?
* I have found information on Serializing, but this seems to be set up for writing text files.
* I noticed the Project > Properties has a Settings tab, but I can't find much info on what this is meant to save, where it is saved, how to write to it or retrieve it during code.
I'm trying to familiarize myself with C# during my time off (until Jan 3rd). I've used only VB.NET (2002) and C++ in the past, so learning C# seems like a great idea!