How to store a list of objects in application settings
I have recently became familiar with C# application settings, and it seems cool. I was searching for a way to store a list of custom objects, but I couldn't find a way! Actually I saw a post to store int[] , but it wasn't helpful for this problem. I tried to change the config of that solution in order to make it suitable for my problem. the XML config file of that was: <Setting Name="SomeTestSetting" Type="System.Int32[]" Scope="User"> <Value Profile="(Default)" /> </Setting> I tried to address my object as quoted below in the type attribute but it wasn't helpful since it doesn't recognizing