Using SequenceEqual to see if two sequences match on all elements in the same order : SequenceEqual « LINQ « VB.Net






Using SequenceEqual to see if two sequences match on all elements in the same order

   

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

Public Class MainClass
   Public Shared Sub Main

        Dim wordsA() As String = {"A", "a", "b"}
        Dim wordsB() As String = {"a", "a", "c"}

        Dim match = wordsA.SequenceEqual(wordsB)

        Console.WriteLine("The sequences match: " & match)

   End Sub


End Class

   
    
    
  








Related examples in the same category

1.Determine if the two lists are equal
2.Use SequenceEqual to compare two Arrays