I would like to serialise a collection of Custom objects in the Settings file of WPF application. I am able to serialise a single Custom object by deriving from ApplicationSettingsBase, however I am unable to serialise a collection of these objects. Could you please help?
Thanks in advance!
public class TestSetting: ApplicationSettingsBase { [UserScopedSetting] public string Name { get { return (string) this["name"]; } set { this["name"] = value; } } }