我需要确定我在函数中收到的字典是否具有不区分大小写的比较器。
IE。不区分大小写的字典声明如下:
var myDict = new Dictionary<string, decimal>(StringComparer.OrdinalIgnoreCase);
当我将字典接收到我的函数中时,我可以访问 .Comparer 属性并检查它的类型 - 但是我似乎得到的只是 -
System.Collections.Generic.EqualityComparer<string>
如何确定正在使用的比较器是否为 StringComparer.OrdinalIgnoreCase?