VB.Net/XML LINQ/Aggregate

Материал из VB Эксперт
Версия от 12:45, 26 мая 2010; Admin (обсуждение | вклад) (1 версия)
(разн.) ← Предыдущая | Текущая версия (разн.) | Следующая → (разн.)
Перейти к: навигация, поиск

Get the maximum value for the ID attribute

  
Imports System
Imports System.Xml.Linq
    Public Class MainClass
        Public Shared Sub Main()
            Dim employees As XElement = XElement.Load("Employees.xml")
            Dim maxId As Integer = Aggregate ele In employees.<Employee> Into Max(CInt(ele.@id))
        End Sub
    End Class