Transformation Select : Select « LINQ « VB.Net






Transformation Select

   

Imports System.IO
Imports System.Reflection
Imports System.Linq
Imports System.Xml.Linq

Public Class MainClass
   Public Shared Sub Main

        Dim numbers = New Integer() {1, 2, 3, 4}
        Dim stringNames = New String() {"one", "two", "three", "four"}

        Dim textNums = From num In numbers _
                       Select stringNames(num)

        Console.WriteLine("Number strings:")
        For Each s In textNums
            Console.WriteLine(s)
        Next

   End Sub


End Class

   
    
    
  








Related examples in the same category

1.Add vbCrLf to the selected value
2.Renaming property in Select
3.Using Select to return a sequence of project names
4.Query Date with Linq
5.Query Reuse with deferred execution
6.Using Concat to create one sequence that contains each array's values
7.Using an indexed SelectMany clause
8.Using Concat to create one sequence
9.Using linq to query the Registry
10.Shows all keys under HKLM\Software that start with the letter C
11.Shows shortcuts to everything under My Recent Documents
12.Counts how many items are in your Favorites folder
13.Uses reflection to show all System assemblies which are currently loaded
14.Projecting Select
15.Using Select to produce a sequence of Integers one value higher
16.Using Select to produce a sequence of strings from a sequence of Integers
17.Anonymous Types in Select Clause
18.Using Select to produce a sequence of each word in an array with new case.
19.Using 'Select New With' to create new objects
20.Using Select to produce a sequence of new objects from two arrays with calculation
21.Using an indexed Select clause to determine if the value of Integers match their position
22.Combine Select and Where to get value from an array based on the value from another array
23.Check for the second letter from each word in an array
24.Use a loop to print out each value in Linq query result
25.num is called the range variable which will take turns representing each value in the array.
26.Select with Function