<location>
<hotspot name="name1" X="444" Y="518" />
<hotspot name="name2" X="542" Y="452" />
<hotspot name="name3" X="356" Y="15" />
</location>
我有一个点变量,我需要选择节点及其坐标,然后更改属性值。我想做类似的事情:
let node = xmld.SelectSingleNode("/location/hotspot[@X='542' @Y='452']")
node.Attributes.[0].Value <- "new_name2"
但通过变量(variable_name.X / variable_name.Y)获取属性值。