What's the best way to load and process a "two-level nested" plist file using MonoTouch? I have a plist file with data (structurally) similar to the following:
- USA
--- New York
--- Chicago
- UK
--- London
--- Edinburgh
- France
--- Paris
--- Lyon
I have Obj C samples that use NSDictionary and NSArray, but I'd like to get it into a standard C# data structure as quickly as possible. I haven't been able to locate any complete examples.