我在.net 3.5中运行了这段代码
public const string SvgNamespace = "http://www.w3.org/2000/svg";
public const string XLinkPrefix = "xlink";
public const string XLinkNamespace = "http://www.w3.org/1999/xlink";
public const string XmlNamespace = "http://www.w3.org/XML/1998/namespace";
public static readonly List<KeyValuePair<string, string>> Namespaces = new List<KeyValuePair<string, string>>()
{
new KeyValuePair<string, string>("", SvgNamespace),
new KeyValuePair<string, string>(XLinkPrefix, XLinkNamespace),
new KeyValuePair<string, string>("xml", XmlNamespace)
};
private bool _inAttrDictionary;
private string _name;
private string _namespace;
public string NamespaceAndName
{
get
{
if (_namespace == SvgNamespace)
return _name;
return Namespaces.First(x => x.Value == _namespace).Key + ":" + _name;
}
}
我正在将其转换为.net 2.0(删除System.Linq)。如何在我的代码中保持 Enumerable.First Method(IEnumerable,Func)找到here的功能?
完整来源file
答案 0 :(得分:1)
您可以使用{/ 1}}循环
foreach
答案 1 :(得分:1)
您可以按如下方式创建GetFirst方法:
public string NamespaceAndName
{
get
{
if (_namespace == SvgNamespace)
return _name;
return GetFirst(Namespaces, _namespace).Key + ":" + _name;
}
}
private KeyValuePair<string, string> GetFirst(List<KeyValuePair<string,string>> namespaces,string yourNamespaceToMatch)
{
for (int i = 0; i < namespaces.Count; i++)
{
if (namespaces[i].Value == yourNamespaceToMatch)
return namespaces[i];
}
throw new InvalidOperationException("Sequence contains no matching element");
}
答案 2 :(得分:1)
它不是Enumerable.First
的替代品,但由于您实际上有一个List<T>
变量,因此可以考虑使用Find
方法。签名与Enumerable.First
兼容,但请注意该行为与Enumerable.FirstOrDefault
兼容,即如果元素不存在,您将获得NRE而不是“序列不包含匹配元素”
return Namespaces.Find(x => x.Value == _namespace).Key + ":" + _name;