Set Operators Union : Union « LINQ « VB.Net






Set Operators Union

   

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

Public Class MainClass
   Public Shared Sub Main

        Dim numbersA() As Integer = {0, 2, 4, 5, 6, 8, 9}
        Dim numbersB() As Integer = {1, 3, 5, 7, 8}

        Dim uniqueNumbers = numbersA.Union(numbersB)

        Console.WriteLine("Unique numbers from both arrays:")
        For Each n In uniqueNumbers
            Console.WriteLine(n)
        Next
   End Sub


End Class

   
    
    
  








Related examples in the same category

1.Using Union to create one sequence that contains the unique first letter
2.Get the products from the both arrays excluding duplicates