You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, in-memory storage for INIFile is performed via .net generic dictionaries, which do not guarantee order when enumerating. The feature to rename sections has highlighted the volatility of order. It would be nice to (perhaps optionally? perhaps always?) retain ordering, which would require some custom work -- possibly an internal implementation if IDictionary<TKey, TValue> since OrderedDictionary isn't generic.
The text was updated successfully, but these errors were encountered:
Currently, in-memory storage for INIFile is performed via .net generic dictionaries, which do not guarantee order when enumerating. The feature to rename sections has highlighted the volatility of order. It would be nice to (perhaps optionally? perhaps always?) retain ordering, which would require some custom work -- possibly an internal implementation if IDictionary<TKey, TValue> since OrderedDictionary isn't generic.
The text was updated successfully, but these errors were encountered: