View Single Post
  #12 (permalink)  
Old 05-10-2008, 10:17 AM
Xav's Avatar   
Xav Xav is offline
Code Warrior
 
Join Date: Mar 2008
Location: On God's Planet
Posts: 9,852
Last Blog:
Web slideshow in JavaS...
Rep Power: 78
Xav has much to be proud ofXav has much to be proud ofXav has much to be proud ofXav has much to be proud ofXav has much to be proud ofXav has much to be proud ofXav has much to be proud ofXav has much to be proud of
Send a message via MSN to Xav
Default Re: beginners C# project

Easy peasy in C#:
Code:
assuming 'doc' is the System.Xml. XmlDocument containing the XML data.
XmlNode row = doc.ChildNodes[596102 - 1];
See? XML docs can be referenced as arrays, objects, the lot. The node 'row' now contains the properties Attributes, ChildNodes and InnerText. Easy, eh?
__________________


Mr. Xav | Website | Forums | Blog
Reply With Quote