Get the products from the both arrays excluding duplicates : Union « LINQ « VB.Net

Home
VB.Net
1.2D
2.Application
3.Class
4.Data Structure
5.Data Types
6.Database ADO.net
7.Date Time
8.Development
9.Event
10.File Directory
11.Generics
12.GUI
13.Internationalization I18N
14.Language Basics
15.LINQ
16.Network Remote
17.Reflection
18.Security
19.Thread
20.Windows Presentation Foundation
21.Windows System
22.XML
23.XML LINQ
VB.Net Tutorial
VB.Net by API
VB.Net » LINQ » UnionScreenshots 
Get the products from the both arrays excluding duplicates
 



Imports System
Imports System.Linq
Imports System.Collections.Generic
Public Class Item
    Public Property Name As String
    Public Property Code As Integer
End Class

Public Class ItemComparer
    Implements IEqualityComparer(Of Item)

    Public Function Equals1(ByVal x As Item, ByVal y As ItemAs Boolean Implements IEqualityComparer(Of Item).Equals
        If x Is y Then Return True

        If x Is Nothing OrElse y Is Nothing Then Return False

        Return (x.Code = y.CodeAndAlso (x.Name = y.Name)
    End Function

    Public Function GetHashCode1(ByVal product As ItemAs Integer Implements IEqualityComparer(Of Item).GetHashCode
        If product Is Nothing Then Return 0
        Dim hashItemName = If(product.Name Is Nothing, 0, product.Name.GetHashCode())
        Dim hashItemCode = product.Code.GetHashCode()
        Return hashItemName Xor hashItemCode
    End Function
End Class


Public Class Example

    Public Shared Sub Main()
        Dim storeA() As Item =
            {New Item With {.Name = "apple", .Code = 9},
             New Item With {.Name = "orange", .Code = 4}}

        Dim storeB() As Item =
            {New Item With {.Name = "apple", .Code = 9},
             New Item With {.Name = "orange", .Code = 4}}



        Dim union = storeA.Union(storeB)

        For Each product In union
            Console.WriteLine(product.Name & " " & product.Code)
        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.Set Operators Union
w_w___w.__j___a_va__2__s__._c___o___m_ | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.