我环顾四周,如果我重复了这个问题,我深表歉意
我有一个标准清单,即
List<String> WordsRequested = new List<String>();
我需要返回此列表的 XPathNodeIterator
执行此转换的最有效方法是什么?
伪代码中的 EG
XMlDocument xd = new XmlDocument("<WordsRequested></WordsRequested>");
//imaginary method to add each string as a <Word/> Element
xd.Append(WordsRequested, "Word");
XPathNodeIterator xpni = xd.Select("//WordsRequest/Word");
return xpni;
我将此返回到 Umbraco 的 XSLExtension