I\'m using XPath in .NET to parse an XML document, along the lines of:
XmlNodeList lotsOStuff = doc.SelectNodes(\"//stuff\
If "stuffChild" is a child node of "stuff", then your xpath should just be:
XmlNode stuffChild = stuff.SelectSingleNode("stuffChild");