是否有一种快速而简单的方法来检查NameValueCollection中是否存在密钥而不通过它进行循环?
寻找像Dictionary.ContainsKey()或类似的东西。
当然,有很多方法可以解决这个问题。只是想知道是否有人可以帮助划伤我的大脑痒。
答案 0 :(得分:162)
来自MSDN:
在以下情况下,此属性返回null:
1)如果找不到指定的密钥;
所以你可以:
NameValueCollection collection = ...
string value = collection[key];
if (value == null) // key doesn't exist
2)如果找到指定的密钥且其关联值为空。
collection[key]
调用base.Get()
,然后调用base.FindEntry()
,内部使用Hashtable
,性能为O(1)。
答案 1 :(得分:48)
使用此方法:
private static bool ContainsKey(this NameValueCollection collection, string key)
{
if (collection.Get(key) == null)
{
return collection.AllKeys.Contains(key);
}
return true;
}
NameValueCollection
效率最高,并且不依赖于集合是否包含null
值。
答案 2 :(得分:14)
我不认为这些答案中的任何一个都是正确的/最佳的。 NameValueCollection不仅不区分空值和缺失值,它对于它的键也不区分大小写。因此,我认为一个完整的解决方案是:
public static bool ContainsKey(this NameValueCollection @this, string key)
{
return @this.Get(key) != null
// I'm using Keys instead of AllKeys because AllKeys, being a mutable array,
// can get out-of-sync if mutated (it weirdly re-syncs when you modify the collection).
// I'm also not 100% sure that OrdinalIgnoreCase is the right comparer to use here.
// The MSDN docs only say that the "default" case-insensitive comparer is used
// but it could be current culture or invariant culture
|| @this.Keys.Cast<string>().Contains(key, StringComparer.OrdinalIgnoreCase);
}
答案 3 :(得分:11)
是的,您可以使用Linq检查AllKeys
属性:
using System.Linq;
...
collection.AllKeys.Contains(key);
然而,Dictionary<string, string[]>
更适合此目的,可能是通过扩展方法创建的:
public static void Dictionary<string, string[]> ToDictionary(this NameValueCollection collection)
{
return collection.Cast<string>().ToDictionary(key => key, key => collection.GetValues(key));
}
var dictionary = collection.ToDictionary();
if (dictionary.ContainsKey(key))
{
...
}
答案 4 :(得分:0)
您可以使用Get
方法并检查null
,因为如果NameValueCollection不包含指定的密钥,方法将返回null
。
请参阅MSDN。
答案 5 :(得分:0)
如果集合大小很小,您可以使用rich.okelly提供的解决方案。然而,大集合意味着字典的生成可能明显慢于仅搜索密钥集合。
此外,如果您的使用场景是在不同时间点搜索键,而NameValueCollection可能已经被修改,那么每次生成字典可能再次比搜索键集更慢。
答案 6 :(得分:0)
这也可以是一种解决方案,而无需引入新方法:
item = collection["item"] != null ? collection["item"].ToString() : null;
答案 7 :(得分:0)
正如您在参考资料中看到的那样,NameValueCollection继承自NameObjectCollectionBase。
因此,您采用基类型,通过反射获取私有哈希表,并检查它是否包含特定键。
为了让它在Mono中工作,您需要查看哈希表的名称是单声道的,这是您可以看到的here(m_ItemsContainer),并获取单声道字段,如果初始FieldInfo为null(单运行时)。
喜欢这个
public static class ParameterExtensions
{
private static System.Reflection.FieldInfo InitFieldInfo()
{
System.Type t = typeof(System.Collections.Specialized.NameObjectCollectionBase);
System.Reflection.FieldInfo fi = t.GetField("_entriesTable", System.Reflection.BindingFlags.Instance | System.Reflection.BindingFlags.NonPublic);
if(fi == null) // Mono
fi = t.GetField("m_ItemsContainer", System.Reflection.BindingFlags.Instance | System.Reflection.BindingFlags.NonPublic);
return fi;
}
private static System.Reflection.FieldInfo m_fi = InitFieldInfo();
public static bool Contains(this System.Collections.Specialized.NameValueCollection nvc, string key)
{
//System.Collections.Specialized.NameValueCollection nvc = new System.Collections.Specialized.NameValueCollection();
//nvc.Add("hello", "world");
//nvc.Add("test", "case");
// The Hashtable is case-INsensitive
System.Collections.Hashtable ent = (System.Collections.Hashtable)m_fi.GetValue(nvc);
return ent.ContainsKey(key);
}
}
对于超纯的非反射.NET 2.0代码,您可以遍历键,而不是使用哈希表,但这很慢。
private static bool ContainsKey(System.Collections.Specialized.NameValueCollection nvc, string key)
{
foreach (string str in nvc.AllKeys)
{
if (System.StringComparer.InvariantCultureIgnoreCase.Equals(str, key))
return true;
}
return false;
}
答案 8 :(得分:0)
在VB中:
if not MyNameValueCollection(Key) is Nothing then
.......
end if
在C#中应该只是:
if (MyNameValueCollection(Key) != null) { }
不确定它应该是null
还是""
,但这应该会有所帮助。
答案 9 :(得分:0)
当我在小元素集合中工作时,我正在使用这个集合。
在哪里元素很多,我认为需要使用“词典”。 我的代码:
NameValueCollection ProdIdes;
string prodId = _cfg.ProdIdes[key];
if (string.IsNullOrEmpty(prodId))
{
......
}
或者可以使用这个:
string prodId = _cfg.ProdIdes[key] !=null ? "found" : "not found";
答案 10 :(得分:0)
queryItems.AllKeys.Contains(key)
请注意,键可能不是唯一的,并且比较通常区分大小写。如果您只想获取第一个匹配键的值而不用担心大小写,请使用以下命令:
public string GetQueryValue(string queryKey)
{
foreach (string key in QueryItems)
{
if(queryKey.Equals(key, StringComparison.OrdinalIgnoreCase))
return QueryItems.GetValues(key).First(); // There might be multiple keys of the same name, but just return the first match
}
return null;
}
答案 11 :(得分:-1)
NameValueCollection n = Request.QueryString;
if (n.HasKeys())
{
//something
}
返回值 键入:System.Boolean 如果NameValueCollection包含非null的键,则返回true;否则返回false。否则,错误。 LINK