我的代碼讀取XML元素是這樣的:vb.net XML For循環
Dim xmlRoot As XElement = XDocument.Load("x:\books.xml").Root
For Each book As XElement In xmlRoot.<book>
Debug.WriteLine(book.<title>.Value)
Debug.WriteLine(book.<author>.Value)
Debug.WriteLine(book.<year>.Value)
Debug.WriteLine(book.<price>.Value)
Next
我現在想的是,如何只顯示10個元素。現在我已經顯示了所有的xml元素,但我只需要前10個。 嘗試了幾個For循環組合,但沒有得到它的工作。
感謝
你試過什麼樣的組合? – 2014-11-23 00:02:48