|
internal Dictionary<string, object> members = new Dictionary<string, object> (); |
Would it be possible to access the keys case insensitive, if the initialitazion of the dictionary were like this:
internal Dictionary<string, object> members = new Dictionary<string, object> (StringComparer.InvariantCultureIgnoreCase);
JsonConfig/JsonConfig/ConfigObjects.cs
Line 32 in 5127e28
Would it be possible to access the keys case insensitive, if the initialitazion of the dictionary were like this: