gpt4 book ai didi

c# - 检查 Key 是否存在于 NameValueCollection 中

转载 作者:IT王子 更新时间:2023-10-29 03:33:03 26 4
gpt4 key购买 nike

有没有一种快速简单的方法来检查 NameValueCollection 中是否存在键,而无需循环遍历它?

寻找像 Dictionary.ContainsKey() 或类似的东西。

当然有很多方法可以解决这个问题。只是想知道是否有人可以帮我挠痒痒。

最佳答案

来自 MSDN :

This property returns null in the following cases:

1) if the specified key is not found;

所以你可以:

NameValueCollection collection = ...
string value = collection[key];
if (value == null) // key doesn't exist

2) if the specified key is found and its associated value is null.

collection[key] 调用 base.Get() 然后 base.FindEntry() 内部使用 Hashtable 性能为 O(1)。

关于c# - 检查 Key 是否存在于 NameValueCollection 中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9868726/

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