Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以在 VB.Net XML Axis 查询中使用变量标签名称???
例如联系人....< varTag >.Value
其中“varTag”是变量名,真正的标签名只有在运行时才能知道。
谢谢。
我认为您不能使用 VB.NET XML 轴语法来做到这一点,但您可以使用该Element方法(只需编写.Element(varTag)而不是.<varTag>)
Element
.Element(varTag)
.<varTag>