claunia / plist-cil

C#/.NET parser for Apple and GnuStep Property List (aka plist), based on Java's dd-plist
Other
54 stars 17 forks source link

NSArray: Implement IList<NSObject> #5

Closed qmfrederik closed 8 years ago

qmfrederik commented 8 years ago

This PR makes NSArray implement IList<NSObject>, just like NSDictionary implements IDictionary<string, NSObject>. It also changes the underlying storage from an array to a List<NSObject>, which makes operations like resizing the array more transparent.

Feedback is welcome!

claunia commented 8 years ago

Perfect, merged.