.NET
C# Settings reminder
As a reminder to self: Settings are nice (too bad they advertise them as Windows Forms Application Settings, as they are just as useful for other assemblies), but be aware…
When using Settings.Default, it will get the values to the state of the app.config (or defaults if there is no app.config) of the assembly that defined the settings, not the app.config of the starting process.
This is unless your settings are merged into the app.config of the starting process.
Reference: | C# Settings reminder from our NCG partner Jeroen Pluimers at the The Wiert Corner blog. |