I working with a string like this:
Norway, true; Sweden, false; England, null; Denmark, false;
I'm trying to get that into a Dictionary<string, bool?>
so I can work with it, remove items, compare against other stuff. When I'm done, I want to convert the dictionary back to a similar string and save it.
Any ideas?