I would like to create my own custom List in an app.config File. I am trying to have a list of Photos I would like to "pin" so That I could read this when the program runs Pinning my photos to the top of my list. I would then like to also have the ability to write to this list should any more photos be Pinned or unpinned.
So far I have:
<PinnedPhotos>
<Photo Location="location.jpg"/>
<Photo Location="location2.jpg"/>
</PinnedPhotos>
But I have no idea How to read or write to this List?