Tried to follow the documentation, and I can't get it to work. Have a KeyedCollection with a key string.
How to make string key case insensitive in KeyedCollection?
In the dictionary, you can simply pass StringComparer.OrdinalIgnoreCase to ctor.
private static WordDefKeyed wordDefKeyed = new WordDefKeyed(StringComparer.OrdinalIgnoreCase);
paparazzo
source share