where property.setting value stored in c# windows application -


I thought it should be a config file, but it can not be found thanks

If you are talking about .Net settings, they will normally be in .config (Xml) as a file Applications in the same directory when you save them, however, a local copy is saved in the user's resetable folder (usually C: \ user \ User name \ AppData \ Local under Vista). Under XP, look in the Documents and Settings folder.

The .NET application uses this file in priority for the 'default' in the application directory.

Hope it helps. / P>


Comments