gpt4 book ai didi

c# - KeyValuePair 的不区分大小写的键比较

转载 作者:行者123 更新时间:2023-11-30 19:27:46 25 4
gpt4 key购买 nike

编辑:文化 这些内部操作表明 不变文化 OrdinalIgnoreCase最合适。

KeyValuePair 是密封的。如果我有 var a = KeyValuePair<string,int>("foo",1)var b = KeyValuePair<string,int>("FOO",2)和我比较a.Key == b.Key我会得到假的。

我想说实话。首先,我将我的 KeyValuePairs 包装在一个自定义类中:

public class MyKeyValuePair
{
private KeyValuePair<string, int> myKeyValuePair;
public SyncItem(string Key, int Value)
{
myKeyValuePair = new KeyValuePair<string, int>(Key, Value);
}

public string Key { get { return myKeyValuePair.Key; } }
public int Value { get { return myKeyValuePair.Value; } }
}

我的第一个想法是我可以添加 .ToLower()在 Key 的构造函数中。

有更好的方法吗?有正确的方法吗?我应该考虑哪些因素?

最佳答案

您可以使用 String.Equals Method (String, StringComparison) 而不是将其转换为小写字母而不是 == 运算符。 (因为你的 key 是字符串类型)

a.Key.Equals(b.Key, StringComparison.CurrentCultureIgnoreCase)

关于c# - KeyValuePair 的不区分大小写的键比较,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17837829/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com