VB.Net/LINQ/Enumerable — различия между версиями

Материал из VB Эксперт
Перейти к: навигация, поиск
м (1 версия)
 
(нет различий)

Версия 16:40, 26 мая 2010

Build a query expression using extension methods granted to the Array via the Enumerable type

  

Module Program
  Sub Main()
    Dim currentVideoGames() As String = {"A", "B", "this is a test", "C", "D", "E"}
    
    Dim subset = currentVideoGames.Where(Function(game) game.Length > 6).OrderBy(Function(game) game).Select(Function(game) game)
    For Each game In subset
      Console.WriteLine("Item: {0}", game)
    Next

  End Sub

End Module