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