Hi,
I would like to know the way you usually save simple application data such as "settings" and stuff.
Am using C#.NET express edition.
Thanks in advance,
zeid
Printable View
Hi,
I would like to know the way you usually save simple application data such as "settings" and stuff.
Am using C#.NET express edition.
Thanks in advance,
zeid
In .NET you have something called as settings. You can either use these or an application configuration file would be good too. If you are not satisfied with either of the two, you can create you own XML file that will store the settings.
Thanks for the reply :)