SeeSoftware
i try to load a XML file and i want to itterate all of its elements to do something with them and i tried to do it like this:
for (XMLElement element = source.NextResult(); element.NotNull(); element = element.NextResult())
but it doesnt itterate anything and i have seen some XPathResult but i dont know how to use it.