Is there a way create a dictionary in spring.net which case insensitive?
<dictionary key-type="string" value-type="string">
<entry key="abc">
<ref object="test"/>
</entry>
</dictionary>
Is there any way I can say that the dictionary key can be case insensitive. so that when I search for abc or ABC or Abc I will get the value of test?
Thanks
Added more entry
<object id="Test" type="string">
<property name="Process">
<object id="ProcessDictionary" type="System.Collections.Generic.Dictionary<string, string>, mscorlib">
<constructor-arg>
<dictionary key-type="string" value-type="string">
<entry key="abc">
<ref object="test"/>
</entry>
</dictionary>
</constructor-arg>
</object>
</property>
</object>
How do I add constructor parameter to ignore case sensitiveness ?