I want to compare two string arrays. I don\'t know how to implement this in vb.net.
Let\'s say I have two arrays
Dim A() As String = {\"Hello\", \"H
Set up a for loop and use .equals to compare each string at each element in the arrays. I can write the code if you need it.