How to compare two arrays of string?

前端 未结 3 1569
陌清茗
陌清茗 2021-01-16 13:21

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         


        
3条回答
  •  轮回少年
    2021-01-16 13:31

    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.

提交回复
热议问题