How to compare array of strings and add it to different excel columns

hello,guys
i’m extracting data from pdf row wise,and adding it to excel

thank you

@Pradeep_Shiv,
If you want to compare two array of strings then you can check like the following,

 arrayOne.SequenceEqual(arrayTwo)

This will return you a Boolean output

1 Like